A collection of shared types.
import { FhirR4 } from '@synanetics/types';
interface Example {
body: FhirR4.SupplierList;
}
// or
import { SupplierList } from '@synanetics/types/dist/fhir/r4/index.js';
// or
import { SupplierList } from '@synanetics/types/dist/fhir/r4/supplierList.js';
interface Example {
body: SupplierList;
}