This commit is contained in:
syuilo 2018-09-15 05:40:58 +09:00
parent e615a3fdf3
commit c985fed3e4
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
7 changed files with 200 additions and 2 deletions

View file

@ -204,4 +204,30 @@ export interface IStats {
decSize: number;
};
};
/**
*
*/
network: {
/**
*
*/
requests: number;
/**
*
* TIP: (totalTime / requests)
*/
totalTime: number;
/**
*
*/
incomingBytes: number;
/**
*
*/
outgoingBytes: number;
};
}