Skip to content

Commit

Permalink
Merge pull request #38 from kirillku/patch-1
Browse files Browse the repository at this point in the history
Fix type of PO.Item
  • Loading branch information
rubenv authored Apr 21, 2020
2 parents 0359aa1 + d92e1f9 commit fe23027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pofile.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fe23027

Please sign in to comment.