Returned posts and groups for a search or when discovering new content

interface Discover {
    groups: Group[];
    hasUserAllowedNsfwPosts?: boolean;
    posts: Post[];
    searchText?: string;
}

Properties

groups: Group[]

The returned Groups

hasUserAllowedNsfwPosts?: boolean

If the current User has allowed NSFW posts

posts: Post[]

The returned Posts

searchText?: string

The text that has been searched for

Generated using TypeDoc