mirror of
https://github.com/jeffvli/sonixd.git
synced 2026-05-02 04:02:36 -04:00
15 lines
227 B
TypeScript
15 lines
227 B
TypeScript
declare module '*.svg' {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.png' {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.jpg' {
|
|
const content: any;
|
|
export default content;
|
|
}
|