12 lines
408 B
TypeScript
12 lines
408 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { PaginationInfoSchema } from './PaginationInfoSchema';
|
|
import type { TransactionSchemaBase } from './TransactionSchemaBase';
|
|
export type GetAllTransactionsResponse = {
|
|
transactions: Array<TransactionSchemaBase>;
|
|
paginationInfo: PaginationInfoSchema;
|
|
};
|
|
|