fix(plugin): shim definePlugin for now [ci skip]

This commit is contained in:
AAGaming
2024-05-24 18:04:05 -04:00
parent b728d90263
commit 0cd498beac

View File

@@ -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);
};
};