@kubb/ui
Version:
User interface components and web dashboard for Kubb, providing a visual interface for managing and monitoring code generation.
16 lines (13 loc) • 427 B
text/typescript
import * as _hono_node_server from '@hono/node-server';
import { AddressInfo } from 'node:net';
type Meta = {
name?: string;
percentages: Record<string, number>;
};
type Options = {
getMeta: () => Meta;
restart: () => void;
stop: () => void;
};
declare function startServer(options: Options, listeningListener?: (info: AddressInfo) => void): Promise<_hono_node_server.ServerType>;
export { startServer };