UNPKG

@adobe/genstudio-extensibility-sdk

Version:
19 lines (18 loc) 422 B
export type TranslationMessage = { id: string; value: string; }; export 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[]>; };