We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6efb3 commit 7f790fcCopy full SHA for 7f790fc
1 file changed
src/mastodon/rest/v1/tags.ts
@@ -19,6 +19,20 @@ export interface Tags$SelectResource {
19
* @return Tag
20
*/
21
unfollow(meta?: HttpMetaParams): Promise<Tag>;
22
+
23
+ /**
24
+ * Feature the hashtag on your profile.
25
+ * @return Tag
26
+ * @see https://docs.joinmastodon.org/methods/tags/#feature
27
+ */
28
+ feature(meta?: HttpMetaParams): Promise<Tag>;
29
30
31
+ * Stop featuring the hashtag on your profile.
32
33
+ * @see https://docs.joinmastodon.org/methods/tags/#unfeature
34
35
+ unfeature(meta?: HttpMetaParams): Promise<Tag>;
36
}
37
38
export interface TagsResource {
0 commit comments