UNPKG

next-porto-cli

Version:

A cli for next.js to scaffold your application using porto architecture

11 lines (10 loc) 422 B
import * as shipGenerator from './ship'; import * as containerGenerator from './container'; import type { ContainerPathsType, ShipPathsType } from '../helpers/path'; /** * Run generator * @param _paths paths to generate files * @returns void */ declare const generateFromPaths: (_paths: ContainerPathsType | ShipPathsType | undefined) => Promise<void>; export { generateFromPaths, shipGenerator, containerGenerator };