@graphql-hive/cli
Version:
A CLI util to manage and control your GraphQL Hive
10 lines (9 loc) • 343 B
TypeScript
import Command from '../base-command';
export default class WhoAmI 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>;
};
run(): Promise<void>;
}