mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-10 22:41:59 +00:00
7 lines
113 B
TypeScript
7 lines
113 B
TypeScript
export interface Plugin {
|
|
name: string;
|
|
icon: JSX.Element;
|
|
content?: JSX.Element;
|
|
onDismount?(): void;
|
|
}
|