@kephas/core
Version:
Provides a common infrastructure for all the other Kephas Framework components: ambient services, dynamic reflection, composition, application management, and others.
21 lines (20 loc) • 533 B
TypeScript
import { Expando } from "../expando";
/**
* Arguments used in command line execution.
*
* @export
* @class Args
* @implements {Expando}
*/
export declare class Args implements Expando {
/**
* Creates an instance of Args.
* @param {(string | string[] | {})} [args] The arguments.
* @memberof Args
*/
constructor(args?: string | string[] | {});
private _fillArgsFromObject;
private _fillArgsFromString;
private _fillArgsFromStringArray;
private static _unescape;
}