@nx-dotnet/dotnet
Version:
This library was generated with [Nx](https://nx.dev).
23 lines (22 loc) • 471 B
TypeScript
/**
* get CLI command line runner
*
* @export
* @returns {({
* command: string,
* info: {
* global: boolean,
* version: string | number
* }
* })}
*/
export declare function dotnetFactory(): LoadedCLI;
export declare function mockDotnetFactory(version?: string): LoadedCLI;
export type LoadedCLI = {
command: string;
info: {
global: boolean;
version: string | number;
};
};
export type DotnetFactory = () => LoadedCLI;