Files
dc/client/src/app/shared/dc-validator/models/dc-validation.model.ts
T
Trevor Moody 5d25681485
Lighthouse Checks / lighthouse (20.15.1) (pull_request) Failing after 57s
Build / Build-and-test-development (pull_request) Failing after 42s
Build / Build-and-ng-test (pull_request) Failing after 41s
chore: lint fixes
2025-12-08 12:30:00 +00:00

21 lines
454 B
TypeScript

import Handsontable from 'handsontable'
export interface HotColumnSettings extends Handsontable.ColumnSettings {
data: string
}
export interface DcColumnSettings {
length?: number
format?: number
valid?: boolean
desc?: string
clsRule?: string
}
export interface DcValidation extends HotColumnSettings, DcColumnSettings {}
export interface DcValidationRuleUpdate
extends Handsontable.ColumnSettings, DcColumnSettings {
data?: string
}