1
0
mirror of https://github.com/sasjs/server.git synced 2026-06-09 10:00:22 +00:00

feat(executor): response with webout

This commit is contained in:
Yury Shkoda
2021-10-05 11:18:20 +03:00
parent f0f1e1d57e
commit 52275ba67d
4 changed files with 85 additions and 22 deletions
+1
View File
@@ -2,6 +2,7 @@ import { MacroVars } from '@sasjs/utils'
export interface ExecutionQuery {
_program: string
macroVars?: MacroVars
_debug?: boolean
}
export const isRequestQuery = (arg: any): arg is ExecutionQuery =>
+3 -2
View File
@@ -1,4 +1,5 @@
export interface ExecutionResult {
log: string
logPath: string
webout: object
log?: string
logPath?: string
}