chore: removing cellValidation leftover

This commit is contained in:
Mihajlo Medjedovic 2023-08-03 22:33:16 +02:00
parent b9a12454e1
commit 3193bdd720

View File

@ -1,22 +0,0 @@
/**
* FIXME: Remove
*/
export interface CellValidation {
data: string
length: number
type?: string
source: string[]
format?: number
validator?: any
valid?: boolean
renderer?: any
dateFormat?: string
readOnly?: boolean
desc?: string
correctFormat?: boolean
/**
* Key for accessing object fields, any type because it can be
* any of the types interface have
*/
[key: string]: any
}