UNPKG

@jeremytenjo/super-code-generator

Version:

A powerful, fast, and scalable code generator that saves you time

12 lines (11 loc) 335 B
export type ParamsPropsSchema<ParamsFileSchema extends ParamsFilePropsSchema> = { name: keyof ParamsFileSchema; type: 'input' | 'dropdown' | 'file'; description: string; options?: { value: ParamsFileSchema[keyof ParamsFileSchema]; }[]; }; export type ParamsFilePropsSchema = { [key: string]: string; };