You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocr-web/types/task.d.ts

23 lines
338 B

export interface TaskListItem {
id: string
name: string
status: string
time: string
}
export interface TaskState {
activeId: string
packageid: string
currentIndex: number
approvalList: any[]
immersion: boolean
inFile: boolean
}
export interface TaskEntity {
p1: string
p2: string
p3: string
imgs: string[]
}