Interface GetPostsResponse

interface GetPostsResponse {
    next_page?: string;
    posts: PostView[];
}

Properties

Properties

next_page?: string
posts: PostView[]