File: tsc-workarounds.patch

package info (click to toggle)
node-postgres 8.16.3%2B~cs35.24.27-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,788 kB
  • sloc: javascript: 15,879; python: 79; makefile: 57
file content (14 lines) | stat: -rw-r--r-- 517 bytes parent folder | download
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;
 }