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
21 lines
419 B
TypeScript
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;
|
|
};
|
|
}
|