@jsonforms/vue-vuetify
Version:
Vue Vuetify renderers for JSON Forms
44 lines (42 loc) • 1.17 kB
TypeScript
import { JsonSchema, UISchemaElement } from '@jsonforms/core';
import { PropType, DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
declare const _default: DefineComponent<{
schema: {
type: PropType<JsonSchema>;
required: true;
};
combinatorKeyword: {
type: PropType<"allOf" | "anyOf" | "oneOf">;
required: true;
};
path: {
type: StringConstructor;
required: true;
};
rootSchema: {
type: PropType<JsonSchema>;
required: true;
};
}, {
otherProps: JsonSchema;
foundUISchema: UISchemaElement;
isLayoutWithElements: boolean;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
schema: {
type: PropType<JsonSchema>;
required: true;
};
combinatorKeyword: {
type: PropType<"allOf" | "anyOf" | "oneOf">;
required: true;
};
path: {
type: StringConstructor;
required: true;
};
rootSchema: {
type: PropType<JsonSchema>;
required: true;
};
}>>, {}, {}>;
export default _default;