@graphql-hive/cli
Version:
A CLI util to manage and control your GraphQL Hive
10 lines • 406 B
TypeScript
import Command from '../../base-command';
export default class SetConfig extends Command<typeof SetConfig> {
static description: string;
static args: {
key: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
value: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
};
run(): Promise<void>;
}
//# sourceMappingURL=set.d.ts.map