mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-11-04 08:12:26 -06:00
14 lines
236 B
TypeScript
14 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;
|
|
}
|