diff --git a/src/index.ts b/src/index.ts index 8f80c21..c4f8b08 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,3 +8,13 @@ export * from './globals'; export * from './webpack'; export * from './utils'; export * from './class-mapper'; + +/** + * @deprecated use @decky/api instead + */ +export const definePlugin = (fn: any): any => { + return (...args: any[]) => { + // TODO: Maybe wrap this + return fn(...args); + }; +}; \ No newline at end of file