kolenkainc-honohub-react
Version:
React admin panel for honohub
12 lines (11 loc) • 415 B
TypeScript
import { ReferenceField as ReferenceFieldComponent } from "../components/ReferenceField";
export type ReferenceFieldProps = {
type: "reference";
to: {
collection: string;
collection_id: string;
field: string;
organisation?: string;
};
} & Pick<ReferenceFieldComponent, "legacyOnChange">;
export declare function ReferenceField(): import("react/jsx-runtime").JSX.Element;