@follow-app/client-sdk
Version:
TypeScript client SDK for Follow RSS Server API
20 lines (13 loc) • 637 B
text/typescript
// Auto-generated types for collections module
import type { EmptyResponse, EntryIdRequest, SuccessResponse } from "../../types"
// Collection check query - check if entry is in collection
export interface CollectionCheckQuery extends EntryIdRequest {}
export type CollectionCheckResponse = SuccessResponse<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