UNPKG
node-ttv
Version:
latest (2.1.0)
2.1.0
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A Node.js wrapper for Twitch.tv's helix API.
node-ttv
/
dist
/
helix
/
resources
/
search.d.ts
6 lines
(5 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
import
Resource
from
"../Resource"
;
export
default
class
Search
extends
Resource
{
searchCategories
(
query
:
string
,
first
?:
number
,
after
?:
string
):
Promise
<
any
>;
searchChannels
(
query
:
string
,
first
?:
number
,
after
?:
string
,
live_only
?:
boolean
):
Promise
<
any
>; }