UNPKG

@coat/cli

Version:

TODO: See #3

13 lines (12 loc) 461 B
/** * Creates and generates a new coat project. * * @param options.template The template that should be used for the new project * @param options.directory The optional path to the directory that should be used * @param options.projectName The optional project name that has been provided */ export declare function create({ template, directory, projectName, }: { template: string; directory?: string; projectName?: string; }): Promise<void>;