blob: 655d2d2e3cf654b53573279a5685a6427517ef7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { Command } from '../models/command';
import { Schema as VersionCommandSchema } from './version';
export declare class VersionCommand extends Command<VersionCommandSchema> {
static aliases: string[];
private readonly localRequire;
private readonly workspaceRequire;
run(): Promise<void>;
private getVersion;
private getPackageManager;
}
|