Skip to content

Commit

Permalink
Add the javascript file export options
Browse files Browse the repository at this point in the history
  • Loading branch information
balogun14 committed Oct 4, 2023
1 parent f5fbeb4 commit 7e4d709
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/sourceFiles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -697,11 +697,13 @@ export namespace SourceFilesModel {

export interface GeneralExportOptions {
exportPattern: string;
exportQuotes?: ExportQuotes;
}

export interface PropertyExportOptions {
escapeQuotes: EscapeQuotes;
exportPattern: string;
exportQuotes?: ExportQuotes;
}

export enum EscapeQuotes {
Expand All @@ -711,6 +713,10 @@ export namespace SourceFilesModel {
THREE = 3,
}

export enum ExportQuotes {
SINGLE = 'single',
DOUBLE = 'double',
}
export type UpdateOption =
| 'clear_translations_and_approvals'
| 'keep_translations'
Expand Down

0 comments on commit 7e4d709

Please sign in to comment.