aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/requests/shared/request-stats.model.ts
blob: 7e4b26bca40fdb2b547e0f4a411021163886a650 (plain) (blame)
1
2
3
4
5
6
7
8
export interface RequestStats {
  milliSecondsInterval: number;
	remainingMilliSeconds: number;
  requests: {
    request: any,
    to: any
  }[];
}