iceshrimp-legacy/packages/megalodon/lib/src/entities/reaction.d.ts

11 lines
219 B
TypeScript

/// <reference path="account.d.ts" />
declare namespace Entity {
type Reaction = {
count: number;
me: boolean;
name: string;
url?: string;
accounts?: Array<Account>;
};
}