Signed-off-by: bnechyporenko <bnechyporenko@bol.com>
This commit is contained in:
bnechyporenko
2024-02-17 15:08:35 +01:00
parent f0c50af246
commit 562270b6dd
11 changed files with 53 additions and 152 deletions
+1 -9
View File
@@ -351,15 +351,7 @@ export interface TaskContext {
// (undocumented)
getTaskState?(): Promise<
| {
[key: string]:
| {
status: 'failed';
reason: string;
}
| {
status: 'success';
value: JsonValue;
};
state?: JsonObject;
}
| undefined
>;
+1 -6
View File
@@ -128,12 +128,7 @@ export interface TaskContext {
getTaskState?(): Promise<
| {
[key: string]:
| { status: 'failed'; reason: string }
| {
status: 'success';
value: JsonValue;
};
state?: JsonObject;
}
| undefined
>;