mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-06 12:10:04 +00:00
feat(*): recreate package with new name
This commit is contained in:
30
src/types/SASjsConfig.ts
Normal file
30
src/types/SASjsConfig.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { ServerType } from "./ServerType";
|
||||
|
||||
/**
|
||||
* Specifies the configuration for the SASjs instance.
|
||||
*
|
||||
*/
|
||||
export class SASjsConfig {
|
||||
/**
|
||||
* The location (including http protocol and port) of the SAS Server.
|
||||
* Can be omitted, eg if serving directly from the SAS Web Server or being
|
||||
* streamed.
|
||||
*/
|
||||
serverUrl: string = "";
|
||||
pathSAS9: string = "";
|
||||
pathSASViya: string = "";
|
||||
/**
|
||||
* The appLoc is the parent folder under which the SAS services (STPs or Job
|
||||
* Execution Services) are stored.
|
||||
*/
|
||||
appLoc: string = "";
|
||||
/**
|
||||
* Can be SAS9 or SASVIYA
|
||||
*/
|
||||
serverType: ServerType | null = null;
|
||||
/**
|
||||
* Set to `true` to enable additional debugging.
|
||||
*/
|
||||
debug: boolean = true;
|
||||
contextName: string = "";
|
||||
}
|
||||
Reference in New Issue
Block a user