@datalayer/primer-rjsf
Version:
React JSON Schema Form (RJSF) for Primer
43 lines (42 loc) • 1.08 kB
TypeScript
declare namespace _default {
namespace schema {
let title: string;
let type: string;
let anyOf: ({
title: string;
properties: {
city: {
type: string;
};
lat?: undefined;
lon?: undefined;
};
required: string[];
} | {
title: string;
properties: {
lat: {
type: string;
};
lon: {
type: string;
};
city?: undefined;
};
required: string[];
})[];
}
let uiSchema: {
"ui:field": ({ schema, idSchema: { $id }, formData, onChange, ...other }: {
[x: string]: any;
schema: any;
idSchema: {
$id: any;
};
formData: any;
onChange: any;
}) => import("react/jsx-runtime").JSX.Element;
};
let formData: {};
}
export default _default;