import { BaseCommand } from "../types/commands"; import { SERVER_COMMANDS, ServerCommandType } from "./constants"; /** * Base interface for server commands */ export interface BaseServerCommand extends BaseCommand { } export interface StartListeningCommand extends BaseServerCommand { } export interface SetApiSchemaCommand extends BaseServerCommand { schemaVersion: number; } /** * Union type for all server commands */ export type ServerCommand = StartListeningCommand | SetApiSchemaCommand; //# sourceMappingURL=commands.d.ts.map