diff options
| author | AAGaming <aagaming@riseup.net> | 2024-02-21 01:08:25 -0500 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-02-21 01:08:25 -0500 |
| commit | 6d2e9365c0fb1bea804743245d79a5b97e3af108 (patch) | |
| tree | d34d09b7406d065edc79ff4a6c694f5caee923f0 /frontend/src/plugin.ts | |
| parent | 61cf80f8a2d472e9cbc7d401c7cd24075d5bcf28 (diff) | |
| download | decky-loader-6d2e9365c0fb1bea804743245d79a5b97e3af108.tar.gz decky-loader-6d2e9365c0fb1bea804743245d79a5b97e3af108.zip | |
more major websocket progress
Diffstat (limited to 'frontend/src/plugin.ts')
| -rw-r--r-- | frontend/src/plugin.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/plugin.ts b/frontend/src/plugin.ts index d750a63e..92a0c625 100644 --- a/frontend/src/plugin.ts +++ b/frontend/src/plugin.ts @@ -1,3 +1,8 @@ +export enum PluginLoadType { + LEGACY_EVAL_IIFE = 0, // legacy, uses legacy serverAPI + ESMODULE_V1 = 1, // esmodule loading with modern @decky/backend apis +} + export interface Plugin { name: string; version?: string; |
