Skip to content

Commit 0193ffa

Browse files
committed
feat(compiler): add root typings
1 parent 7299f33 commit 0193ffa

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

packages/compiler/src/types.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export type ReplexicaConfig = {
2+
outDir: string;
3+
i18nDir: string;
4+
sourceLocale: string;
5+
debug?: boolean;
6+
};
7+
8+
export type ReplexicaLocaleData = {
9+
[fileId: string]: {
10+
[scopeId: string]: {
11+
[chunkId: string]: string;
12+
};
13+
};
14+
};

0 commit comments

Comments
 (0)