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