UNPKG
deepinfra
Version:
latest (2.0.2)
2.0.2
Official API wrapper for DeepInfra
github.com/deepinfra/deepinfra-node
deepinfra/deepinfra-node
deepinfra
/
dist
/
lib
/
types
/
cog
/
request.d.ts
9 lines
(8 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
type
WebhookEventType
=
"start"
|
"output"
|
"logs"
|
"completed"
;
export
interface
CogRequest
<
Req
> {
id
?:
string
;
version
?:
string
|
null
;
input
:
Req
;
webhook
?:
string
|
null
;
webhook_events_filter
?:
WebhookEventType
[]; }