UNPKG

masto

Version:

Mastodon API client for JavaScript, TypeScript, Node.js, browsers

10 lines (9 loc) 293 B
import { type QuoteState } from "./quote.js"; /** * Represents a quote or a quote placeholder, with the current authorization status. * @see https://docs.joinmastodon.org/entities/ShallowQuote/ */ export interface ShallowQuote { state: QuoteState; quotedStatusId?: string | null; }