@synanetics/types
Version:
Common types for cross repository use
25 lines (17 loc) • 408 B
Markdown
# `@synanetics/types`
A collection of shared types.
## Example Usage
### fhir r4
```typescript
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;
}
```