src/app/components/choose-version/choose-version.ts
An interface representing the details of version and release in the input select
Properties |
file |
file:
|
Type : string
|
Optional |
Url to the source (CSV) file for the release |
release |
release:
|
Type : string
|
Release label of the release |
version |
version:
|
Type : string
|
Version number of the release |
export interface ChooseVersion {
/** Release label of the release */
release: string;
/** Version number of the release */
version: string;
/** Url to the source (CSV) file for the release */
file?: string;
}