...
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
export type RepoInputSelectLatestTranslation = {
|
||||
sourceText: string;
|
||||
targetLanguage: string;
|
||||
};
|
||||
|
||||
export type RepoOutputSelectLatestTranslation = {
|
||||
id: number;
|
||||
translatedText: string;
|
||||
sourceLanguage: string;
|
||||
targetLanguage: string;
|
||||
sourceIpa: string | null;
|
||||
targetIpa: string | null;
|
||||
} | null;
|
||||
|
||||
export type RepoInputCreateTranslationHistory = {
|
||||
userId?: string;
|
||||
sourceText: string;
|
||||
sourceLanguage: string;
|
||||
targetLanguage: string;
|
||||
translatedText: string;
|
||||
sourceIpa?: string;
|
||||
targetIpa?: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user