mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-10-31 15:22:26 -05:00
Added support for static assets
This commit is contained in:
parent
76470f49a8
commit
f554798ee4
9 changed files with 120 additions and 949 deletions
14
src/types.d.ts
vendored
Normal file
14
src/types.d.ts
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue