Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
luncheon committed Jul 21, 2022
1 parent 96b3513 commit 3018066
Show file tree
Hide file tree
Showing 3 changed files with 222 additions and 31 deletions.
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export interface DxfTextContentElement {
/** underscore */
u?: 1;
}
export declare const decodeDxfTextCharacterCodes: (text: string, mbcsEncoding?: string | TextDecoder | undefined) => string;
export declare const decodeDxfTextCharacterCodes: (text: string, mbcsEncoding?: string | TextDecoder) => string;
export declare const decodeDxfTextUnicodeCodePoints: (text: string) => string;
export declare const decodeDxfTextMbcsCharacterCodes: (text: string, encoding: string | TextDecoder) => string;
export declare const parseDxfTextContent: (text: string, options?: {
readonly encoding?: string | TextDecoder | undefined;
} | undefined) => DxfTextContentElement[];
readonly encoding?: string | TextDecoder;
}) => DxfTextContentElement[];
243 changes: 217 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build": "tsc -p . && terser -c -m --toplevel -b beautify=false,semicolons=false --warn -o index.mjs index.js"
},
"devDependencies": {
"terser": "^5.5.1",
"typescript": "^4.1.3"
"terser": "^5.14.2",
"typescript": "^4.7.4"
}
}

0 comments on commit 3018066

Please sign in to comment.