From 5ec2c29842fa62b2c6dd0a08feea7de6c5af518f Mon Sep 17 00:00:00 2001 From: Innei Date: Wed, 27 Dec 2023 17:42:24 +0800 Subject: [PATCH] fix: should export a enum value Signed-off-by: Innei --- packages/api-client/models/comment.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/api-client/models/comment.ts b/packages/api-client/models/comment.ts index e008e13b..6a089aa3 100644 --- a/packages/api-client/models/comment.ts +++ b/packages/api-client/models/comment.ts @@ -1,7 +1,8 @@ -import type { CollectionRefTypes } from '@core/constants/db.constant' import type { BaseModel } from './base' import type { CategoryModel } from './category' +import { CollectionRefTypes } from '@core/constants/db.constant' + export { CollectionRefTypes } export interface CommentModel extends BaseModel { refType: CollectionRefTypes