Files
YuGiOh-Database-API/node_modules/mysql2/typings/mysql/lib/Server.d.ts
T
2026-03-13 18:04:08 +01:00

12 lines
282 B
TypeScript

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 };