@ts-common/azure-js-dev-tools
Version:
Developer dependencies for TypeScript related projects
25 lines • 792 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
/**
* Options that can be passed to mvnExecutable().
*/
export interface MvnExecutableOptions {
/**
* The platform that AutoRest will be run on.
*/
osPlatform?: string;
/**
* The path to the AutoRest executable. This can be either the folder that the executable is in or
* the path to the executable itself.
*/
mvnPath?: string;
}
/**
* Get the executable that will be used to run mvn (Maven).
* @param options The options for specifying which executable to use.
*/
export declare function mvnExecutable(options?: MvnExecutableOptions): string;
//# sourceMappingURL=mvn.d.ts.map