@jeremytenjo/super-code-generator
Version:
A powerful, fast, and scalable code generator that saves you time
12 lines (11 loc) • 473 B
TypeScript
import { SuperCodeGeneratorHelpersProps } from './helpers';
import { SuperCodeGeneratorConfigSchema } from '../../..';
import { ParamsFilePropsSchema } from '../../../../utils/types/ParamsPropsSchema';
export default function create(props: {
name: string;
helpers: SuperCodeGeneratorHelpersProps;
componentConfig: SuperCodeGeneratorConfigSchema[0];
componentOutputPath: string;
prettierConfig: any;
params: ParamsFilePropsSchema;
}): Promise<void>;