Browse Source

fix: the datasource definition should allow extra properties

e22m4u 2 years ago
parent
commit
5c36c14087
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/definition/datasource/datasource-definition.d.ts

+ 1 - 0
src/definition/datasource/datasource-definition.d.ts

@@ -4,4 +4,5 @@
 export declare type DatasourceDefinition = {
   name: string;
   adapter: string;
+  [option: string]: unknown;
 };