16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
export declare enum ParentCommand {
|
|
Completed = 0,
|
|
Error = 1,
|
|
Failed = 2,
|
|
InitFailed = 3,
|
|
InitCompleted = 4,
|
|
Log = 5,
|
|
MoveToDelayed = 6,
|
|
MoveToWait = 7,
|
|
Progress = 8,
|
|
Update = 9,
|
|
GetChildrenValues = 10,
|
|
GetIgnoredChildrenFailures = 11,
|
|
MoveToWaitingChildren = 12
|
|
}
|