@synanetics/types
v3.0.0
Published
Common types for cross repository use
Downloads
927
Readme
@synanetics/types
A collection of shared types.
Example Usage
fhir r4
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;
}