mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-11-01 07:42:26 -05:00
15 lines
236 B
TypeScript
15 lines
236 B
TypeScript
|
|
declare module "*.svg" {
|
||
|
|
const content: string;
|
||
|
|
export default content;
|
||
|
|
}
|
||
|
|
|
||
|
|
declare module "*.png" {
|
||
|
|
const content: string;
|
||
|
|
export default content;
|
||
|
|
}
|
||
|
|
|
||
|
|
declare module "*.jpg" {
|
||
|
|
const content: string;
|
||
|
|
export default content;
|
||
|
|
}
|