23 lines
619 B
TypeScript
23 lines
619 B
TypeScript
/**
|
|
* Model for a row of `dynamic_values` returned by the getdynamiccolvals
|
|
* service (the dropdown source for the edited cell itself).
|
|
*/
|
|
export interface DynamicCellValidation {
|
|
DISPLAY_INDEX: number
|
|
RAW_VALUE: string | number
|
|
}
|
|
|
|
/**
|
|
* Model for a row of `dynamic_extended_values` returned by the
|
|
* getdynamiccolvals service (dropdown values for _other_ cells in the _same_
|
|
* row, mapped via DISPLAY_INDEX).
|
|
*/
|
|
export interface DynamicExtendedCellValidation {
|
|
DISPLAY_INDEX: number
|
|
DISPLAY_TYPE: string
|
|
EXTRA_COL_NAME: string
|
|
RAW_VALUE_CHAR: string
|
|
RAW_VALUE_NUM: number
|
|
FORCED_VALUE: number
|
|
}
|