import { IBaseResponse } from './base'; import { ITransaction, ICategorizedTransaction, IEnrichedTransaction } from '../models/Transaction'; export interface IGetTransactionsResponse extends IBaseResponse { transactions: ITransaction[]; } export interface IGetCategorizedTransactionsResponse extends IBaseResponse { transactions: ICategorizedTransaction[]; } export interface IGetEnrichedTransactionsResponse extends IBaseResponse { transactions: IEnrichedTransaction[]; }