From 38a7db8514de0acd94d74ba96bc1efb732add30c Mon Sep 17 00:00:00 2001 From: Sabir Hassan Date: Fri, 29 Apr 2022 15:27:34 +0500 Subject: [PATCH] fix: export GroupResponse interface --- api/src/controllers/group.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/controllers/group.ts b/api/src/controllers/group.ts index 44adef2..033c877 100644 --- a/api/src/controllers/group.ts +++ b/api/src/controllers/group.ts @@ -14,7 +14,7 @@ import Group, { GroupPayload } from '../model/Group' import User from '../model/User' import { UserResponse } from './user' -interface GroupResponse { +export interface GroupResponse { groupId: number name: string description: string