Interface SuggestionRepository

interface SuggestionRepository {
    $select(id): {
        remove(id, meta?): Promise<void>;
    };
    list(params?, meta?): Paginator<mastodon.v1.Account[], ListSuggestionParams>;
}

Methods

Methods