@ederzeel/nuxt-schema-form-nightly
Version:
A runtime form generator for nuxt
17 lines (16 loc) • 663 B
TypeScript
type __VLS_Props = {
id: string;
title?: string;
description?: string;
jsonSchemaPath: string;
properties: PropertiesType;
modelValue: Record<string, unknown>;
required: string[];
isRequired: boolean;
};
type PropertiesType = {
[key: string]: Record<string, unknown>;
};
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;