mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-19 17:40:08 +02:00
20 lines
485 B
TypeScript
20 lines
485 B
TypeScript
// export * from './deck-libs';
|
|
export * from './custom-components';
|
|
export * from './custom-hooks';
|
|
export * from './components';
|
|
export * from './deck-hooks';
|
|
export * from './modules';
|
|
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);
|
|
};
|
|
}; |