@redocly/cli
Version:
[@Redocly](https://redocly.com) CLI is your all-in-one API documentation utility. It builds, manages, improves, and quality-checks your API descriptions, all of which comes in handy for various phases of the API Lifecycle. Create your own rulesets to make
12 lines • 381 B
TypeScript
import type { CommandArgs } from '../wrapper.js';
export type LoginArgv = {
residency?: string;
config?: string;
verbose?: boolean;
};
export declare function handleLogin({ argv, config }: CommandArgs<LoginArgv>): Promise<void>;
export type LogoutArgv = {
config?: string;
};
export declare function handleLogout(): Promise<void>;
//# sourceMappingURL=auth.d.ts.map