UNPKG

@adobe/genstudio-extensibility-sdk

Version:
20 lines (19 loc) 419 B
type TranslationMessage = { id: string; value: string; }; type TranslationItem = { id: string; messages: TranslationMessage[]; }; export type TranslationRequest = { sourceLocale: string; targetLocales: string[]; items: TranslationItem[]; }; export type TranslationResponse = { status: number; error?: string | undefined; results: Record<string, TranslationItem[]>; }; export {};