Files
decky-loader/frontend/src/index.ts

7 lines
215 B
TypeScript

// Sets up DFL, then loads start.ts which starts up the loader
(async () => {
console.debug('Setting up decky-frontend-lib...');
window.DFL = await import('decky-frontend-lib');
await import('./start');
})();