From 4fd944dc35a6ac92088f0b21df93040fa620703e Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Tue, 30 May 2023 18:30:49 +0100 Subject: [PATCH] Replace any with Table --- packages/types/src/documents/app/datasource.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/documents/app/datasource.ts b/packages/types/src/documents/app/datasource.ts index cd378ab46c..8dfdfe6d0f 100644 --- a/packages/types/src/documents/app/datasource.ts +++ b/packages/types/src/documents/app/datasource.ts @@ -12,7 +12,7 @@ export interface Datasource extends Document { } plus?: boolean entities?: { - [key: string]: any + [key: string]: Table } }