mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-05 03:30:05 +00:00
15 lines
234 B
TypeScript
15 lines
234 B
TypeScript
/**
|
|
* Represents requests that are queued, pending a signon event.
|
|
*
|
|
*/
|
|
export interface SASjsWaitingRequest {
|
|
requestPromise: {
|
|
promise: any
|
|
resolve: any
|
|
reject: any
|
|
}
|
|
SASjob: string
|
|
data: any
|
|
config?: any
|
|
}
|