15 lines
218 B
TypeScript
15 lines
218 B
TypeScript
|
|
declare module '*.gif' {
|
||
|
|
const path: string;
|
||
|
|
export default path;
|
||
|
|
}
|
||
|
|
|
||
|
|
declare module '*.jpg' {
|
||
|
|
const path: string;
|
||
|
|
export default path;
|
||
|
|
}
|
||
|
|
|
||
|
|
declare module '*.png' {
|
||
|
|
const path: string;
|
||
|
|
export default path;
|
||
|
|
}
|