oidc-client
Version:
OpenID Connect (OIDC) & OAuth2 client library
28 lines (27 loc) • 857 B
TypeScript
/**
* @license
* Copyright Google Inc. 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 { SemVer } from 'semver';
export declare class Version {
private _version;
private _semver;
constructor(_version?: string | null);
isAlpha(): boolean;
isBeta(): boolean;
isReleaseCandidate(): boolean;
isKnown(): boolean;
isLocal(): boolean | "" | null;
isGreaterThanOrEqualTo(other: SemVer): boolean;
readonly major: number;
readonly minor: number;
readonly patch: number;
readonly qualifier: string;
readonly extra: string;
toString(): string | null;
static assertCompatibleAngularVersion(projectRoot: string): void;
static assertTypescriptVersion(projectRoot: string): void;
}