mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 18:50:05 +00:00
9 lines
108 B
TypeScript
9 lines
108 B
TypeScript
/**
|
|
* Server type - Viya or SAS9.
|
|
*
|
|
*/
|
|
export enum ServerType {
|
|
SASViya = 'SASVIYA',
|
|
SAS9 = 'SAS9'
|
|
}
|