hi-profiles
Version:
React components for the ABDM Health Information Profiles
12 lines (11 loc) • 442 B
TypeScript
interface IDocumentReferenceProps {
document: fhir4.DocumentReference;
className?: string;
}
export declare function DocumentReference({ document }: IDocumentReferenceProps): import("react/jsx-runtime").JSX.Element;
interface IProps {
references: fhir4.Reference[];
className?: string;
}
export default function DocumentReferences({ references, className }: IProps): import("react/jsx-runtime").JSX.Element | null;
export {};