From 05e49f77e685babc184b8aa4755dd0903af5c2fc Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 21 Dec 2024 15:34:15 +0200 Subject: [PATCH] chore(client/ts): remove unused type definition --- src/public/app/services/attribute_parser.d.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/public/app/services/attribute_parser.d.ts diff --git a/src/public/app/services/attribute_parser.d.ts b/src/public/app/services/attribute_parser.d.ts deleted file mode 100644 index 58fe9b916..000000000 --- a/src/public/app/services/attribute_parser.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -declare module 'attribute_parser'; - - -export function lex(str: string): any[] -export function parse(tokens: any[], str?: string, allowEmptyRelations?: boolean): any[] -export function lexAndParse(str: string, allowEmptyRelations?: boolean): any[] -