@quadnix/octo-build
Version:
Octo-Build is a CLI tool to build Octo projects.
13 lines (12 loc) • 338 B
TypeScript
import type { ArgumentsCamelCase, Argv } from 'yargs';
export declare const createModelCommand: {
builder: (yargs: Argv) => Argv;
command: string;
describe: string;
handler: (argv: ArgumentsCamelCase<{
name: string;
package: string;
path: string;
type: string;
}>) => Promise<void>;
};