UNPKG
dots-wrapper
Version:
latest (3.12.6)
3.12.6
3.12.5
3.12.4
3.12.3
3.12.2
3.12.1
3.12.0
3.11.17
3.11.16
3.11.15
3.11.14
3.11.13
3.11.12
3.11.11
3.11.10
3.11.9
3.11.8
3.11.7
3.11.6
3.11.5
3.11.4
3.11.3
3.11.2
3.11.1
3.11.0
3.10.1
3.10.0
3.9.0
3.8.4
3.8.3
3.8.2
3.8.1
3.8.0
3.7.13
3.7.12
3.7.11
3.7.10
3.7.9
3.7.8
3.7.7
3.7.6
3.7.5
3.7.4
3.7.3
3.7.2
3.7.1
3.7.0
3.6.3
3.6.2
3.6.1
3.6.0
3.5.9
3.5.8
3.5.7
3.5.6
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.0
3.3.3
3.3.2
3.3.1
3.3.0
3.2.1
3.2.0
3.1.10
3.1.9
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.2
3.0.1
3.0.0
3.0.0-0
2.6.0
2.5.1-0
2.5.0
2.4.4-0
2.4.1-0
2.4.0
2.3.2-0
2.3.1-0
2.3.0
2.2.1-0
2.2.0
2.1.13-0
2.1.12-0
2.1.11-0
2.1.10-0
2.1.9-0
2.1.7-0
2.1.6-0
2.1.5-0
2.1.4-0
2.1.3-0
2.1.2-0
2.1.1-0
2.1.0
2.1.0-b7bacfe
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-beta
1.0.1
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
dots.pimentel.co
pjpimentel/dots
dots-wrapper
/
dist
/
action
/
types
/
action.d.ts
12 lines
(11 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
type
ActionStatus
=
'in-progress'
|
'completed'
|
'errored'
;
export
interface
IAction
{
completed_at
:
string
;
id
:
number
;
region_slug
:
string
;
resource_id
:
number
;
resource_type
:
string
;
started_at
:
string
;
status
:
ActionStatus
|
string
;
type
:
string
; }