generaltranslation 7.1.3 → 7.1.5
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/index.cjs.min.cjs +3 -3
- package/dist/index.cjs.min.cjs.map +1 -1
- package/dist/index.d.ts +16 -3
- package/dist/index.esm.min.mjs +1 -1
- package/dist/index.esm.min.mjs.map +1 -1
- package/dist/types-dir/enqueueFiles.d.ts +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
@@ -19,12 +19,12 @@ export type Updates = ({
|
|
19
19
|
* @param fileFormat - The format of the file (JSON, MDX, MD, etc.)
|
20
20
|
* @param dataFormat - The format of the data within the file
|
21
21
|
*/
|
22
|
-
export
|
22
|
+
export type FileToTranslate = {
|
23
23
|
content: string;
|
24
24
|
fileName: string;
|
25
25
|
fileFormat: FileFormat;
|
26
26
|
dataFormat?: DataFormat;
|
27
|
-
}
|
27
|
+
};
|
28
28
|
export type EnqueueFilesOptions = {
|
29
29
|
publish: boolean;
|
30
30
|
description?: string;
|
package/dist/types.d.ts
CHANGED
@@ -194,12 +194,12 @@ type Updates = ({
|
|
194
194
|
* @param fileFormat - The format of the file (JSON, MDX, MD, etc.)
|
195
195
|
* @param dataFormat - The format of the data within the file
|
196
196
|
*/
|
197
|
-
|
197
|
+
type FileToTranslate = {
|
198
198
|
content: string;
|
199
199
|
fileName: string;
|
200
200
|
fileFormat: FileFormat;
|
201
201
|
dataFormat?: DataFormat;
|
202
|
-
}
|
202
|
+
};
|
203
203
|
type EnqueueFilesOptions = {
|
204
204
|
publish: boolean;
|
205
205
|
description?: string;
|