Skip to content

Commit 7825a43

Browse files
authored
Add aborted to Status types (#355)
* Aborted is now a first class status
1 parent f8ab2e8 commit 7825a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
declare module "replicate" {
2-
type Status = "starting" | "processing" | "succeeded" | "failed" | "canceled";
2+
type Status = "starting" | "processing" | "succeeded" | "failed" | "canceled" | "aborted";
33
type Visibility = "public" | "private";
44
type WebhookEventType = "start" | "output" | "logs" | "completed";
55

0 commit comments

Comments
 (0)