next-porto-cli
Version:
A cli for next.js to scaffold your application using porto architecture
16 lines (15 loc) • 808 B
TypeScript
import 'module-alias/register';
import type { ShipPathsType } from '../helpers/path';
/**
* Create files from paths
* @param _paths object containing the file paths to scaffold
* @returns void
*/
declare const generateFromPaths: (_paths: ShipPathsType) => Promise<void>;
declare const hooksGenerator: (_path: string) => Promise<void>;
declare const configGenerator: (_path: string) => Promise<void>;
declare const layoutsGenerator: (_path: string) => Promise<void>;
declare const stylesGenerator: (_path: string) => Promise<void>;
declare const helpersGenerator: (_path: string) => Promise<void>;
declare const componentsGenerator: (_path: string) => Promise<void>;
export { generateFromPaths, hooksGenerator, configGenerator, layoutsGenerator, stylesGenerator, helpersGenerator, componentsGenerator, };