neet/masto.js

View on GitHub
src/mastodon/rest/v1/profile-repository.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { type HttpMetaParams } from "../../../interfaces";

export interface ProfileRepository {
  avatar: {
    /**https://github.com/mastodon/mastodon/pull/25124 */
    remove(meta?: HttpMetaParams): Promise<void>;
  };

  header: {
    /**https://github.com/mastodon/mastodon/pull/25124 */
    remove(meta?: HttpMetaParams): Promise<void>;
  };
}