mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 18:50:05 +00:00
15 lines
240 B
TypeScript
15 lines
240 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;
|
|
}
|