Skip to content

Commit

Permalink
10408: address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
JayFlexy committed Nov 5, 2024
1 parent 03d01cf commit 9c71526
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
export interface SpecialTrialSession {
export type SpecialTrialSession = {
userId: string;
trialSessionId: string;
}
};

export interface SpecialTrialSessionKey {
export type SpecialTrialSessionKey = {
pk: string;
sk: string;
}
};

export interface TrialSessionWorkingCopyNotes {
export type TrialSessionWorkingCopyNotes = {
sessionNotes: string;
trialSessionId: string;
}
};

0 comments on commit 9c71526

Please sign in to comment.