@totvs-agro/core-mobile
Version:
Core Mobile Totvs Agro (Front-End) para utilização dos estilos do T-Faces
10 lines (9 loc) • 324 B
TypeScript
import { Variable } from "../model/variable/variable";
export declare abstract class ComponentVariable {
abstract getValue(): any;
abstract setValue(value: any): void;
abstract getVariable(): Variable;
abstract onChangeCallback(): void;
getLegendClass(): string;
getLegendColor(): string;
}