1
0
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:
Krishna Acondy
2020-07-07 19:53:35 +01:00
commit 066f953863
150 changed files with 48625 additions and 0 deletions

30
src/types/SASjsConfig.ts Normal file
View 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 = "";
}