generated from michael/webpack-base
21 lines
411 B
TypeScript
21 lines
411 B
TypeScript
|
declare module '*.png' {
|
||
|
const content: string;
|
||
|
export default content;
|
||
|
}
|
||
|
declare module '*.svg' {
|
||
|
const content: string;
|
||
|
export default content;
|
||
|
}
|
||
|
declare module '*.jpg' {
|
||
|
const content: string;
|
||
|
export default content;
|
||
|
}
|
||
|
declare module '*.jpeg' {
|
||
|
const content: string;
|
||
|
export default content;
|
||
|
}
|
||
|
declare module '*.gif' {
|
||
|
const content: string;
|
||
|
export default content;
|
||
|
}
|