11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
declare module '*.html' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
declare module '!!raw-loader!*' {
|
|
const contents: string
|
|
export = contents
|
|
}
|
|
|
|
declare module '*.png';
|
|
declare module '*.jpg'; |