16 lines
354 B
TypeScript
16 lines
354 B
TypeScript
import {
|
|
DynamicCellValidation,
|
|
DynamicExtendedCellValidation
|
|
} from '../editor/models/dynamicExtendedCellValidation'
|
|
|
|
export interface CellValidationSource {
|
|
col: number
|
|
row: number
|
|
strict: boolean
|
|
values: DynamicCellValidation[]
|
|
extended_values?: DynamicExtendedCellValidation[]
|
|
hash: string
|
|
count: number
|
|
pending?: Promise<void>
|
|
}
|