J'ai juste update le cutie.js, CONNARD
Ah oui, j'ai aussi add le info.js, qui est merdique d'ailleurs
This commit is contained in:
Syxpi
2025-10-11 22:06:46 +02:00
parent 14d4df5a40
commit b5cba1c318
283 changed files with 15040 additions and 12924 deletions

View File

@@ -335,6 +335,8 @@ export interface ConnectionOptions {
* (Default: false)
*/
jsonStrings?: boolean;
gracefulEnd?: boolean;
}
declare class Connection extends QueryableBase(ExecutableBase(EventEmitter)) {

View File

@@ -54,7 +54,7 @@ declare class PoolCluster extends EventEmitter {
remove(pattern: string): void;
end(): void;
end(callback?: (err: NodeJS.ErrnoException | null) => void): void;
getConnection(
callback: (

View File

@@ -92,9 +92,9 @@ export interface StreamOptions {
highWaterMark?: number;
/**
* The object mode of the stream (Default: true)
* The object mode of the stream is always set to `true`
*/
objectMode?: any;
objectMode?: true;
}
export interface QueryError extends NodeJS.ErrnoException {