@skyux/packages
Version:
Handles the `ng update` command for SKY UX component libraries.
16 lines (15 loc) • 325 B
TypeScript
/**
* Represents the version of a package.
* @internal
*/
export declare class Version {
readonly full: string;
readonly major: string;
readonly minor: string;
readonly patch: string;
constructor(full: string);
}
/**
* Represents the version of @skyux/core.
*/
export declare const VERSION: Version;