mirror of
https://github.com/sasjs/server.git
synced 2026-01-12 00:30:06 +00:00
feat(execute): add sas controller
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
export interface RequestQuery {
|
||||
export interface ExecutionQuery {
|
||||
_program: string
|
||||
}
|
||||
|
||||
export const isRequestQuery = (arg: any): arg is RequestQuery =>
|
||||
export const isRequestQuery = (arg: any): arg is ExecutionQuery =>
|
||||
arg && !Array.isArray(arg) && typeof arg._program === 'string'
|
||||
|
||||
Reference in New Issue
Block a user