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.
 
 
 
 
 
 

14 lines
400 B

export type Label = { [key: string]: number }
export type User = { [key: string]: number }
export type ConfirmedCount = { [key: string]: number }
export type Distribution = { [user: string]: { [label: string]: number } }
export interface Progress {
total: number
progress: { user: string; done: number }[]
}
export interface MyProgress {
total: number
complete: number
remaining: number
}