forked from Ninjalama/streamyfin_mirror
10 lines
147 B
TypeScript
10 lines
147 B
TypeScript
declare module "*.svg" {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
|
|
declare module "*.png" {
|
|
const value: any;
|
|
export default value;
|
|
}
|