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