Interface FeaturedTagRepository

interface FeaturedTagRepository {
    suggestions: {
        list(meta?): Paginator<mastodon.v1.Tag[], undefined>;
    };
    $select(id): {
        remove(meta?): Promise<void>;
    };
    create(params, meta?): Promise<FeaturedTag>;
    list(meta?): Paginator<FeaturedTag[], undefined>;
}

Properties

Methods

Properties

suggestions: {
    list(meta?): Paginator<mastodon.v1.Tag[], undefined>;
}

Type declaration

Methods