Skip to content

Commit

Permalink
chore: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
spicyfalafel committed Sep 19, 2024
1 parent 5fca33d commit d0962d1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions resources/sdk/typescript/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export interface SearchParams {
'placeholder-1': {};
'placeholder-2': {};
"Bundle": {},
"Patient": {}
'placeholder-1': object;
'placeholder-2': object;
"Bundle": object,
"Patient": object
}

export interface SubsSubscription {
Expand All @@ -12,20 +12,20 @@ export interface SubsSubscription {
}

export interface ResourceTypeMap {
'placeholder-1': {};
'placeholder-2': {};
"Bundle": {},
"Patient": {}
'placeholder-1': object;
'placeholder-2': object;
"Bundle": object,
"Patient": object
}

export type TaskDefinitionsMap = {
'placeholder-1': { params: {}; result: {} };
'placeholder-2': { params: {}; result: {} };
'placeholder-1': { params: object; result: object };
'placeholder-2': { params: object; result: object };
};

export type WorkflowDefinitionsMap = {
'placeholder-1': { params: {}; result: {} };
'placeholder-2': { params: {}; result: {} };
'placeholder-1': { params: object; result: object };
'placeholder-2': { params: object; result: object };
};

export const TaskDefinitionsNameMap: Record<keyof TaskDefinitionsMap, string> = {
Expand Down

0 comments on commit d0962d1

Please sign in to comment.