src/interfaces/IParamsColDisplay.ts
Properties |
map |
map:
|
Type : function
|
Optional |
Defined in src/interfaces/IParamsColDisplay.ts:10
|
Need this if type is 'enum' |
type |
type:
|
Type : "text" | "enum" | "switch" | "hide"
|
Defined in src/interfaces/IParamsColDisplay.ts:5
|
Type of display |
export interface IParamsColDisplay {
/**
* Type of display
*/
type: 'text' | 'enum' | 'switch' | 'hide';
/**
* Need this if type is 'enum'
*/
map?: (x: any) => string;
}