/** * (c) Phan Trung Nguyên * User: nguyenpl117 * Date: 3/14/2020 * Time: 4:26 PM * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { BaseCommand } from '@tngraphql/console'; import { Application } from "../Application"; export declare class KeyGenerateCommand extends BaseCommand { /** * Command name. The command will be registered using this name only. Make * sure their aren't any spaces inside the command name. */ static commandName: string; static description: string; force: boolean; show: boolean; application: Application; handle(...args: any[]): Promise; protected generateRandomKey(): string; protected setKeyInEnvironmentFile(key: string): Promise; }