@graphql-mesh/serve-cli
Version:
6 lines (5 loc) • 382 B
text/typescript
import { type GatewayConfigSubgraph } from '@graphql-mesh/serve-runtime';
import { type AddCommand, type CLIContext, type GatewayCLIConfig } from '../cli.cjs';
export declare const addCommand: AddCommand;
export type SubgraphConfig = GatewayConfigSubgraph<unknown> & GatewayCLIConfig;
export declare function runSubgraph({ log }: CLIContext, config: SubgraphConfig): Promise<void>;