Skip to content

Commit

Permalink
chore: fix eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
lgou2w committed Aug 20, 2022
1 parent 397ca25 commit c59ee33
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit c59ee33

Please sign in to comment.