/** * (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 { GeneratorCommand } from './GeneratorCommand'; export declare class ModelMakeCommand extends GeneratorCommand { protected getStub(): string; protected getSuffix(): string; /** * 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; name: string; getDestinationPath(): string; }