Update bot

This commit is contained in:
Syxpi
2025-10-18 23:20:19 +02:00
commit c590dd1c64
4459 changed files with 650347 additions and 0 deletions

11
node_modules/mysql2/typings/mysql/lib/Server.d.ts generated vendored Normal file
View File

@@ -0,0 +1,11 @@
import { EventEmitter } from 'events';
import { Connection } from './Connection.js';
declare class Server extends EventEmitter {
connections: Array<Connection>;
listen(port: number): Server;
close(callback: (error: Error, count: number) => any): void;
}
export { Server };