UNPKG

@ts-common/azure-js-dev-tools

Version:

Developer dependencies for TypeScript related projects

18 lines 742 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */ export interface GetArgumentOptions { checkEnvironmentVariables?: boolean; environmentVariableName?: string; defaultValue?: string; } export declare function getArgument(argumentName: string, options?: GetArgumentOptions): string | undefined; export interface GetBooleanArgumentOptions { checkEnvironmentVariables?: boolean; environmentVariableName?: string; defaultValue?: boolean; } export declare function getBooleanArgument(argumentName: string, options?: GetBooleanArgumentOptions): boolean | undefined; //# sourceMappingURL=commandLine.d.ts.map