Version
[ Interface ]
export interface Version {
full: string;
major: number;
minor: number;
build: number;
revision: number;
}
Describes a version number and provides access to the individual components.
Properties
Name | Type | Description |
---|---|---|
full | Full version as string in the form: Major.Minor.Build.Revision e.g.: "1.0.0.0" | |
major | Major part as number | |
minor | Minor part as number | |
build | Build part as number | |
revision | Revision part as number |
Available from version 1.10 |