Merge pull request #39 from rubenv/revert-38-patch-1

Revert "Fix type of PO.Item"
This commit is contained in:
Ruben Vermeersch 2020-04-21 09:38:15 +02:00 committed by GitHub
commit d6937a7da2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
pofile.d.ts vendored
View File

@ -36,7 +36,7 @@ declare class PO {
public static parse(data: string): PO; public static parse(data: string): PO;
public static parsePluralForms(forms: string): PO; public static parsePluralForms(forms: string): PO;
public static load(fileName: string, callback: (err: NodeJS.ErrnoException, po: PO) => void): void; 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 save(fileName: string, callback: (err: NodeJS.ErrnoException) => void): void;
public toString(): string; public toString(): string;