@ederzeel/nuxt-schema-form-nightly
Version:
A runtime form generator for nuxt
22 lines (21 loc) • 862 B
text/typescript
import type { TableColumn } from '@nuxt/ui';
import type { PropertiesType } from '../../types/index.js';
type __VLS_Props = {
id: string;
title?: string;
description?: string;
jsonSchemaPath: string;
items: PropertiesType;
modelValue: Record<string, unknown>[];
isRequired: boolean;
minItems?: number;
maxItems?: number;
edit?: boolean;
columns?: TableColumn<{}>[];
editInline?: boolean;
required?: string[];
setHidden?: (value: boolean) => void;
};
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;