1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fetching backend stats

This commit is contained in:
Fedor Katurov 2020-06-09 12:35:54 +07:00
parent d260325592
commit be3401a4e5
5 changed files with 46 additions and 8 deletions

View file

@ -49,7 +49,7 @@ export interface IApiErrorResult {
export interface IResultWithStatus<T> {
status: any;
data?: Partial<T> & IApiErrorResult;
data?: T & IApiErrorResult;
error?: string;
debug?: string;
}