@oystehr/sdk
Version:
Oystehr SDK
15 lines (12 loc) • 549 B
JavaScript
import { OystehrFHIRError, OystehrSdkError } from './errors/index.js';
import { Oystehr as Oystehr$1 } from './resources/classes/index.js';
// HACK: ideally we would only have to do this for CommonJS
// where default + named exports are not allowed; however,
// our ancient tsc settings are somehow grabbing js from
// dist/esm and types from dist/cjs
class Oystehr extends Oystehr$1 {
static OystehrFHIRError = OystehrFHIRError;
static OystehrSdkError = OystehrSdkError;
}
export { Oystehr as default };
//# sourceMappingURL=index.js.map