add context response type

This commit is contained in:
2025-08-03 21:24:40 +00:00
parent 566d6ae518
commit 8e90e8b71e

5
types.d.ts vendored
View File

@ -6,6 +6,11 @@ export interface Notification {
created_at: string; created_at: string;
} }
export interface ContextResponse {
ancestors: Notification[];
descendents: Notification[];
}
export interface NewStatusBody { export interface NewStatusBody {
content_type: "application/json" | "text/markdown"; content_type: "application/json" | "text/markdown";
in_reply_to_id?: string; in_reply_to_id?: string;