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