We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeb32c1 commit 55cdbdfCopy full SHA for 55cdbdf
types/index.d.ts
@@ -21,11 +21,11 @@ export type ZongjiOptions = {
21
22
/**
23
* Record specifying a database and specific tables. ie. ['MyDatabase']: ['table1', 'table2']
24
- * OR a filter function that returns true if a schema.table combination should be included
+ * OR a filter function that returns true if a database.table combination should be included
25
* OR specifying true will include all tables in the database.
26
*/
27
interface DatabaseFilter {
28
- [databaseName: string]: string[] | true | ((table: string, databaseName: string) => boolean);
+ [database: string]: string[] | true | ((table: string, database: string) => boolean);
29
}
30
31
export type StartOptions = {
0 commit comments