UNPKG

@sasjs/cli

Version:

Command line interface for SASjs

11 lines (10 loc) 286 B
import { ServerType, TargetJson } from '@sasjs/utils/types'; import { TargetScope } from './targetScope'; export interface CommonFields { scope: TargetScope; serverType: ServerType; name: string; appLoc: string; serverUrl: string; existingTarget?: TargetJson; }