mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-05 19:50:06 +00:00
13 lines
217 B
TypeScript
13 lines
217 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
|
|
}
|