Revert "Fix type of PO.Item"

This commit is contained in:
Ruben Vermeersch 2020-04-21 09:38:00 +02:00 committed by GitHub
parent fe23027f32
commit c62b82a98d
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 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;