import { RESTAPIItems } from "../utils/rest"; import { APIContent } from "../payloads/content"; import { RESTAPISuccessResponse } from "../utils"; import { APICounters } from "./counters"; /** * The feed returned from the API */ export interface APIFeed { content: RESTAPIItems; } /** * Response when fetching feed items */ export interface RESTAPIFeedResponse extends RESTAPISuccessResponse { notifications: APICounters; } //# sourceMappingURL=feeds.d.ts.map