/** * (c) Phan Trung Nguyên * User: nguyenpl117 * Date: 3/22/2020 * Time: 10:10 AM * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { BaseCommand } from '@tngraphql/console'; export declare class RefreshCommand extends BaseCommand { static commandName: string; static description: string; connection: string; dryRun: boolean; force: boolean; batch: number; handle(): Promise; runRollback(): Promise; runReset(): Promise; parse(argv: any): any; }