UNPKG

@follow-app/client-sdk

Version:

TypeScript client SDK for Follow RSS Server API

20 lines (13 loc) 657 B
// Auto-generated types for collections module import type { EmptyResponse, EntryIdRequest, StructuredSuccessResponse } from "../../types" // Collection check query - check if entry is in collection export interface CollectionCheckQuery extends EntryIdRequest {} export type CollectionCheckResponse = StructuredSuccessResponse<boolean> // Collection create request export interface CollectionCreateRequest extends EntryIdRequest { view?: number } export type CollectionCreateResponse = EmptyResponse // Collection delete request export interface CollectionDeleteRequest extends EntryIdRequest {} export type CollectionDeleteResponse = EmptyResponse