UNPKG

condoit

Version:

[![](https://img.shields.io/badge/Docs-Docs-00a02e?logo=github&style=for-the-badge&color=0000ff)](https://securisec.github.io/condoit/) ![](https://img.shields.io/npm/v/condoit?style=for-the-badge)

34 lines (27 loc) 550 B
interface transactionsObject { phid: string; } export type phid = string; export interface Transactions extends ErrorCodes { result: { object: { id: number; phid: string }; transactions: Array<transactionsObject>; }; } export interface ErrorCodes { error_code: string; error_info: string; } export interface RetSearchConstants { id: number; type: string; phid: string; } export interface BeforeAfterLimit { before?: string; after?: string; limit?: number; } export interface GenericReturn extends ErrorCodes { result: object; }