import { IBaseResponse } from './base'; import { IAccount } from '../models/Account'; export interface IGetAccountsResponse extends IBaseResponse { accounts: IAccount[]; }