webpack-config-demo/index.d.ts

10 lines
145 B
TypeScript
Raw Normal View History

2024-10-17 20:09:08 +03:00
declare module '*.jpg' {
const path: string;
export default path;
}
declare module '*.txt' {
const path: string;
export default path;
}