From c43f4e7abf2004dfa33490fbc875d061777244f0 Mon Sep 17 00:00:00 2001 From: porink0424 Date: Wed, 8 May 2024 14:43:08 +0900 Subject: [PATCH] Rename study_id, study_name in StudySummary as well --- tslib/types/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tslib/types/src/index.ts b/tslib/types/src/index.ts index c2a06d32..4272a4d5 100644 --- a/tslib/types/src/index.ts +++ b/tslib/types/src/index.ts @@ -46,8 +46,8 @@ export type AttributeSpec = { } export type StudySummary = { - study_id: number - study_name: string + id: number + name: string directions: StudyDirection[] }