UNPKG

rdme

Version:

ReadMe's official CLI and GitHub Action.

12 lines (11 loc) 730 B
import BaseCommand from '../lib/baseCommand.js'; export default class LoginCommand extends BaseCommand<typeof LoginCommand> { static description: string; static flags: { email: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>; password: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>; project: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>; otp: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>; }; run(): Promise<string>; }