@sasjs/cli
Version:
Command line interface for SASjs
14 lines (13 loc) • 390 B
TypeScript
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>;
}