10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
declare module '*.png' {
|
|
const path: string;
|
|
export default path;
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
const path: string;
|
|
export default path;
|
|
}
|