From c62b82a98dd71e96a94e4c997a3dba15b49d2070 Mon Sep 17 00:00:00 2001 From: Ruben Vermeersch Date: Tue, 21 Apr 2020 09:38:00 +0200 Subject: [PATCH] Revert "Fix type of PO.Item" --- pofile.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pofile.d.ts b/pofile.d.ts index 98bc077..dd61731 100644 --- a/pofile.d.ts +++ b/pofile.d.ts @@ -36,7 +36,7 @@ declare class PO { public static parse(data: string): PO; public static parsePluralForms(forms: string): PO; public static load(fileName: string, callback: (err: NodeJS.ErrnoException, po: PO) => void): void; - public static Item: Item; + public static Item: typeof Item; public save(fileName: string, callback: (err: NodeJS.ErrnoException) => void): void; public toString(): string;