Files
fusion/packages/desktop/src/fusion-internal-modules.d.ts
Fusion c0134f183e feat(FN-3399): route desktop remote mode into shell onboarding flow
Removes the standalone `DesktopShellBootstrap` component from the desktop package, routing desktop remote mode into the shell onboarding flow instead. Updates the corresponding test file to reflect the component removal and adjusts the README.

Fusion-Task-Id: FN-3399
2026-05-04 23:47:25 -07:00

21 lines
419 B
TypeScript

declare module "@fusion/core" {
export class TaskStore {
constructor(rootDir: string);
init(): Promise<void>;
watch(): Promise<void>;
close(): void;
}
}
declare module "@fusion/dashboard" {
import type { Server } from "node:http";
export function createServer(store: {
init(): Promise<void>;
watch(): Promise<void>;
close(): void;
}): {
listen(port?: number): Server;
};
}