mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-23 10:09:54 +00:00
feat: Add NextflowRelease type
This commit is contained in:
parent
d736e9561d
commit
4b078199d1
1 changed files with 9 additions and 0 deletions
9
src/NextflowRelease.ts
Normal file
9
src/NextflowRelease.ts
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
/**
|
||||||
|
* Houses the pertinent data that GitHub exposes for each Nextflow release
|
||||||
|
*/
|
||||||
|
export type NextflowRelease = {
|
||||||
|
versionNumber: string
|
||||||
|
isEdge: boolean
|
||||||
|
binaryURL: string
|
||||||
|
allBinaryURL: string
|
||||||
|
}
|
Loading…
Reference in a new issue