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