interface HackerNewsNodeParameters {
additionalFields?:
| { includeComments?: boolean }
| {
keyword?: string;
tags?: (
| "comment"
| "ask_hn"
| "front_page"
| "poll"
| "show_hn"
| "story"
)[];
};
articleId?: string;
limit?: number;
operation?: "get"
| "getAll";
resource?: "all" | "user" | "article";
returnAll?: boolean;
username?: string;
}
Default: {}