neet/masto.js

View on GitHub
src/mastodon/entities/v1/admin/domain-allow.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface DomainAllow {
  /** The ID of the domain allow in the database. */
  id: string;
  /** The domain of the domain allow in the database. */
  domain: string;
  /** The create date of the domain allow in the database. */
  createdAt: string;
}