From c59ee338912e5e61310c9cf16dd5f64933c8a0a5 Mon Sep 17 00:00:00 2001 From: lgou2w Date: Sat, 20 Aug 2022 18:33:02 +0800 Subject: [PATCH] chore: fix eslint error --- src/type.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/type.ts b/src/type.ts index c20c9fe..1c80d1c 100644 --- a/src/type.ts +++ b/src/type.ts @@ -31,6 +31,12 @@ export interface AuthorizationPayload { export type PunchInResponse = BaseResponse<{ res: { status: 'ok' | 'fail', punchInLastDay?: string } }> +export interface ImageMedia { + originalName: string + path: string + fileServer: string +} + export interface User { _id: string birthday: string @@ -65,12 +71,6 @@ export interface UserFavouritePayload { sort?: ComicSort } -export interface ImageMedia { - originalName: string - path: string - fileServer: string -} - export interface Comic { _id: string title: string