UNPKG

@oystehr/sdk

Version:

Oystehr SDK

17 lines (16 loc) 623 B
import type { OystehrClientRequest } from './client/client'; import { OystehrConfig } from './config'; import * as errors from './errors'; import { Oystehr as OystehrBase } from './resources/classes'; export * from './resources'; export type { OystehrClientRequest }; export type { OystehrConfig }; declare class Oystehr extends OystehrBase { static OystehrFHIRError: typeof errors.OystehrFHIRError; static OystehrSdkError: typeof errors.OystehrSdkError; } declare namespace Oystehr { type OystehrFHIRError = errors.OystehrFHIRError; type OystehrSdkError = errors.OystehrSdkError; } export default Oystehr;