fix: update listSchemas typing

This commit is contained in:
Nybkox
2025-04-08 18:06:09 +02:00
parent d1a6be6ca6
commit 18faf89b89

View File

@@ -287,7 +287,7 @@ export interface EngineDriver<TClient = any> extends FilterBehaviourProvider {
adaptTableInfo(table: TableInfo): TableInfo; adaptTableInfo(table: TableInfo): TableInfo;
// simple data type adapter // simple data type adapter
adaptDataType(dataType: string): string; adaptDataType(dataType: string): string;
listSchemas(dbhan: DatabaseHandle<TClient>): SchemaInfo[]; listSchemas(dbhan: DatabaseHandle<TClient>): Promise<SchemaInfo[] | null>;
backupDatabaseCommand( backupDatabaseCommand(
connection: any, connection: any,
settings: BackupDatabaseSettings, settings: BackupDatabaseSettings,