# `@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;
}
```
