UNPKG

@datalayer/primer-rjsf

Version:

React JSON Schema Form (RJSF) for Primer

70 lines (69 loc) 2.27 kB
declare namespace _default { export namespace schema { let title: string; let description: string; let type: string; let required: string[]; namespace properties { namespace firstName { let type_1: string; export { type_1 as type }; let title_1: string; export { title_1 as title }; } namespace lastName { let type_2: string; export { type_2 as type }; let title_2: string; export { title_2 as title }; } namespace age { let type_3: string; export { type_3 as type }; let title_3: string; export { title_3 as title }; } namespace bio { let type_4: string; export { type_4 as type }; let title_4: string; export { title_4 as title }; } namespace password { let type_5: string; export { type_5 as type }; let title_5: string; export { title_5 as title }; export let minLength: number; } namespace telephone { let type_6: string; export { type_6 as type }; let title_6: string; export { title_6 as title }; let minLength_1: number; export { minLength_1 as minLength }; } } } export namespace formData { let firstName_1: string; export { firstName_1 as firstName }; let lastName_1: string; export { lastName_1 as lastName }; let age_1: number; export { age_1 as age }; let bio_1: string; export { bio_1 as bio }; let password_1: string; export { password_1 as password }; } export { ObjectFieldTemplate }; } export default _default; declare function ObjectFieldTemplate({ TitleField, properties, title, description }: { TitleField: any; properties: any; title: any; description: any; }): import("react/jsx-runtime").JSX.Element;