neet/masto.js

View on GitHub
src/mastodon/entities/v1/reaction.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface Reaction {
  name: string;
  count: number;
  me: boolean;
  url: string;
  staticUrl: string;
}