| 12345678910111213141516171819 |
- declare module "*.gif" {
- const value: any;
- export = value;
- }
- declare module "*.jpg" {
- const value: any;
- export = value;
- }
- declare module "*.png" {
- const value: any;
- export = value;
- }
- declare module "*.svg" {
- const value: any;
- export = value;
- }
|