diff --git a/client/src/app/editor/models/cellValidation.ts b/client/src/app/editor/models/cellValidation.ts deleted file mode 100644 index 0bb836a..0000000 --- a/client/src/app/editor/models/cellValidation.ts +++ /dev/null @@ -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 -}