@ederzeel/nuxt-schema-form-nightly
Version:
A runtime form generator for nuxt
24 lines (23 loc) • 882 B
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 & {
required?: string[];
};
isRequired: boolean;
minItems?: number;
maxItems?: number;
edit?: boolean;
columns?: TableColumn<{}>[];
editInline?: boolean;
modelValue: unknown[];
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;