Skip to content

Commit

Permalink
update .d.ts and mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
tuananh committed Dec 11, 2023
1 parent f4f260c commit 28687c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ declare const camaro: {
prettyPrint(xml: string, opts?: { indentSize: number }): Promise<string>;
toJson(xml: string): Promise<any>;
transform(xml: string, template: object): Promise<any>;
destroy(): Promise<any>;
};

export = camaro;
1 change: 1 addition & 0 deletions index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ export default mod;
export const transform = mod.transform;
export const toJson = mod.toJson;
export const prettyPrint = mod.prettyPrint;
export const destroy = mod.destroy;

0 comments on commit 28687c7

Please sign in to comment.