Skip to content

Commit

Permalink
Fixed auto-generated type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
bennetfabian committed May 24, 2022
1 parent 3b0ef40 commit e326d34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default class IconJar {
* @return string
* @throws CreationException
*/
save(pathToSave: any): string;
save(pathToSave: string): string;
}
export declare class Icon {
static readonly TYPE_UNKNOWN = -1;
Expand Down Expand Up @@ -165,7 +165,7 @@ export declare class Icon {
*
* @return number
*/
static getType(file: any): 1 | -1 | 0 | 2 | 3 | 4 | 5 | 6;
static getType(file: string): 1 | -1 | 0 | 2 | 3 | 4 | 5 | 6;
/**
* @param string tag
*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iconjar-exporter",
"version": "1.0.9",
"version": "1.0.10",
"description": "",
"main": "index.js",
"devDependencies": {
Expand Down

0 comments on commit e326d34

Please sign in to comment.