mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-05 03:30:05 +00:00
chore(*): change code style to remove semicolons
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { ServerType } from "./ServerType";
|
||||
import { ServerType } from "./ServerType"
|
||||
|
||||
/**
|
||||
* Specifies the configuration for the SASjs instance.
|
||||
@@ -10,22 +10,22 @@ export class SASjsConfig {
|
||||
* Can be omitted, eg if serving directly from the SAS Web Server or being
|
||||
* streamed.
|
||||
*/
|
||||
serverUrl: string = "";
|
||||
pathSAS9: string = "";
|
||||
pathSASViya: string = "";
|
||||
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 = "";
|
||||
appLoc: string = ""
|
||||
/**
|
||||
* Can be SAS9 or SASVIYA
|
||||
*/
|
||||
serverType: ServerType | null = null;
|
||||
serverType: ServerType | null = null
|
||||
/**
|
||||
* Set to `true` to enable additional debugging.
|
||||
*/
|
||||
debug: boolean = true;
|
||||
contextName: string = "";
|
||||
useComputeApi = false;
|
||||
debug: boolean = true
|
||||
contextName: string = ""
|
||||
useComputeApi = false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user