From 3193bdd7203bfb88db965fae6f5c5e8693855752 Mon Sep 17 00:00:00 2001 From: Mihajlo Medjedovic Date: Thu, 3 Aug 2023 22:33:16 +0200 Subject: [PATCH] chore: removing cellValidation leftover --- .../src/app/editor/models/cellValidation.ts | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 client/src/app/editor/models/cellValidation.ts 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 -}