UNPKG

manifest

Version:

The backend for AI code editors

11 lines (10 loc) 351 B
import { PropType } from '../crud'; import { ValidationManifest } from './ValidationManifest'; export type PropertyManifest = { name: string; type: PropType; hidden?: boolean; options?: Record<string, unknown>; validation?: ValidationManifest; default?: string | number | boolean | Record<string, unknown> | Array<unknown>; };