UNPKG

@datalayer/primer-rjsf

Version:

React JSON Schema Form (RJSF) for Primer

51 lines (50 loc) 1.5 kB
declare namespace _default { export namespace schema { let title: string; let description: string; let type: string; namespace properties { namespace pass1 { let title_1: string; export { title_1 as title }; let type_1: string; export { type_1 as type }; export let minLength: number; } namespace pass2 { let title_2: string; export { title_2 as title }; let type_2: string; export { type_2 as type }; let minLength_1: number; export { minLength_1 as minLength }; } namespace age { let title_3: string; export { title_3 as title }; let type_3: string; export { type_3 as type }; export let minimum: number; } } } export namespace uiSchema { let pass1_1: { "ui:widget": string; }; export { pass1_1 as pass1 }; let pass2_1: { "ui:widget": string; }; export { pass2_1 as pass2 }; } export let formData: {}; export { validate }; export { transformErrors }; } export default _default; declare function validate({ pass1, pass2 }: { pass1: any; pass2: any; }, errors: any): any; declare function transformErrors(errors: any): any;