@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
27 lines (26 loc) • 698 B
TypeScript
import { IIcon, LanguageTags } from "../../models";
export interface ITextTranslator {
text: string;
onTranslateCompleted: (result: string) => void;
srcLanguage?: LanguageTags;
/**
* Enforce usage of language settings from a specific scope, default is businessprofile.
* */
forceTenantLanguages?: boolean;
fabButton?: boolean;
icon?: IIcon;
dark?: boolean;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-text-translator": ITextTranslator;
}
}
}