Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(client): correct loading behavior, add MedplumClient lifecycle events #4701

Merged
merged 4 commits into from
Jun 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup(client): move eventtarget import below comment
  • Loading branch information
ThatOneBro committed Jun 20, 2024
commit 8bb9d6b8e7636c01b774a05bca90b341d94ed01b
2 changes: 1 addition & 1 deletion packages/core/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ import {
UserConfiguration,
ValueSet,
} from '@medplum/fhirtypes';
import { TypedEventTarget } from './eventtarget';
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
/** @ts-ignore */
import type { CustomTableLayout, TDocumentDefinitions, TFontDictionary } from 'pdfmake/interfaces';
import { encodeBase64 } from './base64';
import { LRUCache } from './cache';
import { ContentType } from './contenttype';
import { encryptSHA256, getRandomString } from './crypto';
import { TypedEventTarget } from './eventtarget';
import {
CurrentContext,
FhircastConnection,
Expand Down
Loading