Skip to content

Commit 75fcb32

Browse files
committed
add to global
1 parent f4d2989 commit 75fcb32

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

packages/shared-components/src/@types/global.d.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,15 @@ declare module "*.png" {
1919
const content: string;
2020
export default content;
2121
}
22+
23+
// For importing animated GIFs for use in testing
24+
declare module "*.gif" {
25+
const content: string;
26+
export default content;
27+
}
28+
29+
// For importing videos for use in testing
30+
declare module "*.webm" {
31+
const content: string;
32+
export default content;
33+
}

0 commit comments

Comments
 (0)