cocori-ng
Version:
Cocori-ng is an Angular full of great components & utilites based on Material
14 lines (13 loc) • 351 B
TypeScript
export interface DataSourceInput {
type: DataSourceType;
value: any;
dataSourceNameProperty?: string; /** property of the datasource used in the view, default : 'name' */
}
export declare enum DataSourceType {
API = "api",
BRUTE = "brute"
}
export interface SelectOption {
id: string | number;
name: string;
}