ITextTranslation.ts 398 B

12345678910111213
  1. export class ITextTranslation {
  2. public static defaultTextTranslation: ITextTranslation;
  3. public static translateText(tag: string, text: string): string {
  4. if (this.defaultTextTranslation === undefined) {
  5. return text;
  6. }
  7. //return this.DefaultTextTranslation.translate(tag, text);
  8. }
  9. //declare public translate(tag: string, text: string): string;
  10. }