@graphql-hive/cli
Version:
A CLI util to manage and control your GraphQL Hive
19 lines (18 loc) • 623 B
TypeScript
import Command from '../../base-command';
export default class OperationsCheck extends Command {
static description: string;
static flags: {
registry: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
token: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
require: import("@oclif/core/lib/interfaces").OptionFlag<string[]>;
};
static args: {
name: string;
required: boolean;
description: string;
hidden: boolean;
}[];
run(): Promise<void>;
private printInvalidDocuments;
private renderErrors;
}