UNPKG
auto-gpt-ts
Version:
latest (0.0.3)
0.0.3
0.0.2
my take of Auto-GPT in typescript
github.com/tuvia-r/auto-GPT-ts
tuvia-r/auto-GPT-ts
auto-gpt-ts
/
dist
/
commands
/
google-search.d.ts
6 lines
(5 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
6
import
*
as
DDG
from
'duck-duck-scrape'
;
export
declare
class
GoogleSearchCommand
{
static
logger
:
import
(
"../logging"
).
Logger
;
static
googleSearch
(
query
:
string
,
maxResults
:
number
):
Promise
<
DDG
.
SearchResult
[]>; }