UNPKG

271 BPlain TextView Raw
1/**
2 * `ItemType` lists the possible item types
3 * (`job`, `story`, `comment`, `poll`, or `pollopt`)
4 * with `unknown` indicating that a type was not given by the API.
5 */
6export type ItemType =
7 | "job"
8 | "story"
9 | "comment"
10 | "poll"
11 | "pollopt"
12 | "unknown";