mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-07 04:20:05 +00:00
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
/**
|
|
* Represents a SASjs request, its response and logs.
|
|
*
|
|
*/
|
|
export interface SASjsRequest {
|
|
serviceLink: string;
|
|
timestamp: Date;
|
|
sourceCode: string;
|
|
generatedCode: string;
|
|
logFile: string;
|
|
SASWORK: any;
|
|
}
|