UNPKG

@sasjs/cli

Version:

Command line interface for SASjs

14 lines (13 loc) 545 B
import { ReturnCode } from '../../types/command'; import { TargetCommand } from '../../types/command/targetCommand'; export declare class ContextCommand extends TargetCommand { private _config?; constructor(args: string[]); execute(): Promise<ReturnCode>; getConfig(): Promise<Object>; executeCreateContext(): Promise<ReturnCode>; executeDeleteContext(): Promise<ReturnCode>; executeEditContext(): Promise<ReturnCode>; executeExportContext(): Promise<ReturnCode>; executeListContext(): Promise<ReturnCode>; }