UNPKG

@sasjs/cli

Version:

Command line interface for SASjs

14 lines (13 loc) 390 B
import { ReturnCode } from '../../types/command'; import { TargetCommand } from '../../types/command/targetCommand'; /** * 'snippets' command class. */ export declare class SnippetsCommand extends TargetCommand { constructor(args: string[]); /** * Command execution method. * @returns promise that results into return code. */ execute(): Promise<ReturnCode>; }