@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
12 lines (9 loc) • 450 B
TypeScript
import { Layout, Options } from '../types/index.js';
/**
* createCommandAndArgs creates a command and an array of arguments, based on the given {@link Options}.
*
* @param options Options to create the command and args from.
* @returns A tuple containing the command and an array of arguments.
*/
declare function createCommandAndArgs<T extends Layout>(options: Options<T>): [command: string, args: string[]];
export { createCommandAndArgs };