@datalayer/primer-rjsf
Version:
React JSON Schema Form (RJSF) for Primer
65 lines (64 loc) • 1.86 kB
TypeScript
declare namespace _default {
namespace schema {
let title: string;
let type: string;
let required: string[];
namespace properties {
namespace password {
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 bio {
let type_3: string;
export { type_3 as type };
let title_3: string;
export { title_3 as title };
}
namespace firstName {
let type_4: string;
export { type_4 as type };
let title_4: string;
export { title_4 as title };
}
namespace age {
let type_5: string;
export { type_5 as type };
let title_5: string;
export { title_5 as title };
}
}
}
let uiSchema: {
"ui:order": string[];
age: {
"ui:widget": string;
};
bio: {
"ui:widget": string;
};
password: {
"ui:widget": string;
};
};
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 default _default;