@graphql-hive/cli
Version:
A CLI util to manage and control your GraphQL Hive
7 lines (6 loc) • 435 B
TypeScript
import baseCommand from '../base-command';
import { SchemaChangeConnection, SchemaErrorConnection } from '../sdk';
export declare function renderErrors(this: baseCommand, errors: SchemaErrorConnection): void;
export declare function renderChanges(this: baseCommand, changes: SchemaChangeConnection): void;
export declare function loadSchema(file: string): Promise<string>;
export declare function minifySchema(schema: string): string;