/** * Default response structure * * @property {boolean} result * @property {any} data */ export interface IResponse { result: boolean; data: any; }