summaryrefslogtreecommitdiff
path: root/frontend/src/plugin.ts
diff options
context:
space:
mode:
authorJesse Bofill <jesse_bofill@yahoo.com>2025-10-06 13:50:02 -0600
committerJesse Bofill <jesse_bofill@yahoo.com>2025-10-06 13:50:02 -0600
commit65f1eb052de17f21144571d932281a0484f48dfd (patch)
tree62838c5fb5e86d0896b78b376abede9103b14e39 /frontend/src/plugin.ts
parent86b5567d4eac84399245c9a71270d6142ee54ded (diff)
downloaddecky-loader-65f1eb052de17f21144571d932281a0484f48dfd.tar.gz
decky-loader-65f1eb052de17f21144571d932281a0484f48dfd.zip
implement base frontend changes necessary for plugin disabling
Diffstat (limited to 'frontend/src/plugin.ts')
-rw-r--r--frontend/src/plugin.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/plugin.ts b/frontend/src/plugin.ts
index 0035990e..f53118b2 100644
--- a/frontend/src/plugin.ts
+++ b/frontend/src/plugin.ts
@@ -14,6 +14,8 @@ export interface Plugin {
titleView?: JSX.Element;
}
+export type DisabledPlugin = Pick<Plugin, 'name' | 'version'>;
+
export enum InstallType {
INSTALL,
REINSTALL,