mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 00:37:49 +00:00
7 lines
93 B
TypeScript
7 lines
93 B
TypeScript
export interface Plugin {
|
|
name: any;
|
|
content: any;
|
|
icon: any;
|
|
onDismount?(): void;
|
|
}
|