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
388 B

3 years ago
3 years ago
  1. export type Label = {[key: string]: number}
  2. export type User = {[key: string]: number}
  3. export type ConfirmedCount = {[key: string]: number}
  4. export type Distribution = {[user: string]: {[label: string]: number}}
  5. export interface Progress {
  6. total: number
  7. progress: {user: string, done: number}[]
  8. }
  9. export interface MyProgress {
  10. total: number
  11. complete: number
  12. remaining: number
  13. }