1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: ignore tsc error into @types/pg
Author: Yadd <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2025-08-10
--- a/types-pg/lib/type-overrides.d.ts
+++ b/types-pg/lib/type-overrides.d.ts
@@ -73,5 +73,6 @@
setTypeParser<T>(oid: number | TypeId, format: "text", parseFn: TypeParser<string, T>): void;
setTypeParser<T>(oid: number | TypeId, format: "binary", parseFn: TypeParser<Buffer, T>): void;
+// @ts-ignore
getTypeParser<T>(oid: number | TypeId, format?: TypeFormat): TypeParser;
}
|