UNPKG

@iceworks/generate-material

Version:

Generate material collection or single component

12 lines (11 loc) 428 B
import { ITemplateOptions } from './types'; interface IOptions { rootDir: string; templateOptions?: ITemplateOptions; enableDefPublish?: boolean; enablePegasus?: boolean; builder?: string; materialType?: 'component' | 'block' | 'scaffold'; } export default function formatProject({ rootDir, templateOptions, enableDefPublish, enablePegasus, builder, materialType, }: IOptions): Promise<void>; export {};