Skip to content

Commit

Permalink
feat(core): Add type definition for png files
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshm committed Jun 7, 2021
1 parent f1b9be5 commit 5292c11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/scripts/modules/core/src/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
///<reference path="./svg.d.ts" />
///<reference path="./png.d.ts" />
///<reference path="./promise.d.ts" />
4 changes: 4 additions & 0 deletions app/scripts/modules/core/src/types/png.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module '*.png' {
const value: any;
export default value;
}

0 comments on commit 5292c11

Please sign in to comment.