Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fongsean committed Jun 20, 2024
1 parent 694df45 commit 4ea5edc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion services/extract-express/src/operationOutcome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

import { OperationOutcome } from 'fhir/r4b';
import type { OperationOutcome } from 'fhir/r4b';

export function createInvalidParametersOutcome(): OperationOutcome {
return {
Expand Down
2 changes: 1 addition & 1 deletion services/extract-express/src/questionnaire.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

import { Bundle, BundleEntry, Questionnaire } from 'fhir/r4b';
import type { Bundle, BundleEntry, Questionnaire } from 'fhir/r4b';
import { HEADERS } from './globals';

export async function getQuestionnaire(
Expand Down
2 changes: 1 addition & 1 deletion services/extract-express/src/questionnaireResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

import { Parameters, ParametersParameter, QuestionnaireResponse } from 'fhir/r4b';
import type { Parameters, ParametersParameter, QuestionnaireResponse } from 'fhir/r4b';

export function getQuestionnaireResponse(body: any): QuestionnaireResponse | null {
if (isQuestionnaireResponse(body)) {
Expand Down
2 changes: 1 addition & 1 deletion services/extract-express/src/structureMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

import { Bundle, BundleEntry, Questionnaire, StructureMap } from 'fhir/r4b';
import type { Bundle, BundleEntry, Questionnaire, StructureMap } from 'fhir/r4b';
import { HEADERS } from './globals';

export function getTargetStructureMapCanonical(questionnaire: Questionnaire): string | null {
Expand Down
2 changes: 1 addition & 1 deletion services/extract-express/src/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

import {
import type {
FhirResource,
Parameters,
ParametersParameter,
Expand Down

0 comments on commit 4ea5edc

Please sign in to comment.