...
This commit is contained in:
@@ -11,4 +11,7 @@ export const LENGTH_MAX_IPA = 150;
|
||||
export const LENGTH_MIN_IPA = 1;
|
||||
|
||||
export const LENGTH_MAX_FOLDER_NAME = 20;
|
||||
export const LENGTH_MIN_FOLDER_NAME = 1;
|
||||
export const LENGTH_MIN_FOLDER_NAME = 1;
|
||||
|
||||
export const LENGTH_MAX_TRANSLATOR_TEXT = 1000;
|
||||
export const LENGTH_MIN_TRANSLATOR_TEXT = 1;
|
||||
@@ -1 +1,2 @@
|
||||
export * from './dictionary-type';
|
||||
export * from './dictionary-type';
|
||||
export * from './translator-type';
|
||||
8
src/shared/translator-type.ts
Normal file
8
src/shared/translator-type.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
export type TSharedTranslationResult = {
|
||||
sourceText: string;
|
||||
translatedText: string;
|
||||
sourceLanguage: string;
|
||||
targetLanguage: string;
|
||||
sourceIpa: string;
|
||||
targetIpa: string;
|
||||
};
|
||||
Reference in New Issue
Block a user