ui-framework-jps
Version:
A simple UI framework for state management and UI components
12 lines (11 loc) • 490 B
TypeScript
import { FieldValueOptions, FieldValueOptionsListener, ValueOption } from "../../model/CommonTypes";
export declare class SimpleValueDataSource implements FieldValueOptions {
private options;
private listeners;
constructor(options: ValueOption[]);
addValueOption(name: string, value: string): void;
addListener(listener: FieldValueOptionsListener): void;
getOptions(): ValueOption[];
protected clearValueOptions(): void;
protected informListeners(): void;
}