Update Fix

This commit is contained in:
2026-03-15 12:30:40 +01:00
parent 311ba5e7f3
commit 50be8e25f3
176 changed files with 4075 additions and 3013 deletions

5
node_modules/mysql2/promise.d.ts generated vendored
View File

@@ -65,6 +65,8 @@ export interface Connection extends QueryableAndExecutableBase {
end(options?: any): Promise<void>;
[Symbol.asyncDispose](): Promise<void>;
destroy(): void;
pause(): void;
@@ -82,6 +84,7 @@ export interface Connection extends QueryableAndExecutableBase {
export interface PoolConnection extends Connection {
release(): void;
connection: Connection;
[Symbol.asyncDispose](): Promise<void>;
}
export interface Pool extends Connection {
@@ -112,6 +115,8 @@ export interface PoolCluster extends EventEmitter {
end(): Promise<void>;
[Symbol.asyncDispose](): Promise<void>;
getConnection(): Promise<PoolConnection>;
getConnection(group: string): Promise<PoolConnection>;
getConnection(group: string, selector: string): Promise<PoolConnection>;