Comparing version 1.0.7 to 1.0.8
{ | ||
"name": "pofile", | ||
"description": "Parse and serialize Gettext PO files.", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Ruben Vermeersch", |
@@ -1,6 +0,6 @@ | ||
declare module "pofile" { | ||
declare module pofile { | ||
function parse(data: string): PO; | ||
function load(fileName: string, callback: (err: NodeJS.ErrnoException | null, po: PO) => void): void; | ||
class PO { | ||
public static parse(data: string): PO; | ||
public static load(fileName: string, callback: (err: NodeJS.ErrnoException | null, po: PO) => void): void; | ||
public comments: string[]; | ||
@@ -42,4 +42,4 @@ public extractedComments: string[]; | ||
} | ||
} | ||
export = PO; | ||
} | ||
export = pofile |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21793