wlpacks-ontimize-web-ngx
Version:
Ontimize Web framework using Angular 8
12 lines (11 loc) • 328 B
TypeScript
export declare class OValueChangeEvent {
type: number;
newValue: any;
oldValue: any;
target: any;
static USER_CHANGE: number;
static PROGRAMMATIC_CHANGE: number;
constructor(type: number, newValue: any, oldValue: any, target: any);
isUserChange(): boolean;
isProgrammaticChange(): boolean;
}