mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-23 18:09:55 +00:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
|
/**
|
||
|
* Houses the pertinent data that GitHub exposes for each Nextflow release
|
||
|
*/
|
||
|
export type NextflowRelease = {
|
||
|
versionNumber: string
|
||
|
isEdge: boolean
|
||
|
binaryURL: string
|
||
|
allBinaryURL: string
|
||
|
}
|