generaltranslation 8.0.1-alpha.2 → 8.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/id/hashSource.d.ts +1 -2
- package/dist/id.cjs.min.cjs.map +1 -1
- package/dist/id.esm.min.mjs.map +1 -1
- package/dist/index.cjs.min.cjs +18 -1
- package/dist/index.cjs.min.cjs.map +1 -1
- package/dist/index.d.ts +43 -2
- package/dist/index.esm.min.mjs +18 -1
- package/dist/index.esm.min.mjs.map +1 -1
- package/dist/types-dir/api/entry.d.ts +1 -2
- package/dist/types-dir/api/file.d.ts +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { DataFormat as DataFormat$1 } from 'src/types';
|
|
2
|
+
|
|
1
3
|
type CustomMapping = Record<string, string | Partial<LocaleProperties>>;
|
|
2
4
|
|
|
3
5
|
type LocaleProperties = {
|
|
@@ -169,7 +171,7 @@ type FileReference = {
|
|
|
169
171
|
branchId: string;
|
|
170
172
|
fileName: string;
|
|
171
173
|
fileFormat: FileFormat;
|
|
172
|
-
dataFormat?: DataFormat;
|
|
174
|
+
dataFormat?: DataFormat$1;
|
|
173
175
|
};
|
|
174
176
|
|
|
175
177
|
type DownloadFileBatchOptions = {
|