UNPKG
hn-ts
Version:
latest (0.1.0)
0.1.0
TypeScript client for the Hacker News API
github.com/velut/hn-ts
velut/hn-ts
hn-ts
/
src
/
raw-item-type.ts
6 lines
(5 loc)
•
184 B
text/typescript
View Raw
1
2
3
4
5
6
/** *
`RawItemType`
lists the possible item types * (
`job`
,
`story`
,
`comment`
,
`poll`
,
or
`pollopt`
) */ export type RawItemType =
"job"
|
"story"
|
"comment"
|
"poll"
|
"pollopt"
;