mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-16 02:21:00 +03:00
* feat(titleView): Add Custom TitleView support * fix: wrap TitleView in Focusable * fix: remove root div on TitleView
16 lines
249 B
TypeScript
16 lines
249 B
TypeScript
export interface Plugin {
|
|
name: string;
|
|
version?: string;
|
|
icon: JSX.Element;
|
|
content?: JSX.Element;
|
|
onDismount?(): void;
|
|
alwaysRender?: boolean;
|
|
titleView?: JSX.Element;
|
|
}
|
|
|
|
export enum InstallType {
|
|
INSTALL,
|
|
REINSTALL,
|
|
UPDATE,
|
|
}
|