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)

27 lines (26 loc) 620 B
import { ErrorCodes, phid } from './iGlobal'; export interface FeedQuery { filterPHIDs?: Array<phid>; limit?: number; after?: number; before?: number; view?: 'data' | 'html' | 'html-summary' | 'text'; } export interface retFeedQueryData { class?: string; epoch?: number; authorPHID?: phid; chronologicalKey?: string; text?: string; data?: { objectPHID: phid; transactionPHIDs: { [phid: string]: string; }; }; } export interface RetFeedQuery extends ErrorCodes { result: { [phid: string]: string | retFeedQueryData; }; }