From d92e1f9e89c906e0680d68b63e16bc2237e82eaf Mon Sep 17 00:00:00 2001 From: Kirill Kubryakov Date: Tue, 21 Apr 2020 10:25:53 +0300 Subject: [PATCH] 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 dd61731..98bc077 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: typeof Item; + public static Item: Item; public save(fileName: string, callback: (err: NodeJS.ErrnoException) => void): void; public toString(): string;