abb-core
Version:
Application Build Butler Core
10 lines (9 loc) • 313 B
TypeScript
import { TABBTranslatorResource } from "../IABB-translator";
export interface IABBLanguageState {
currentLanguage: string;
}
export interface IABBTranslatorState {
transltorResource: TABBTranslatorResource;
}
export interface IABBTranslatorCombinedState extends IABBTranslatorState, IABBLanguageState {
}