setup-nextflow/src/NextflowRelease.ts

10 lines
202 B
TypeScript
Raw Normal View History

2023-12-23 17:21:56 +00:00
/**
* Houses the pertinent data that GitHub exposes for each Nextflow release
*/
export type NextflowRelease = {
versionNumber: string
isEdge: boolean
binaryURL: string
allBinaryURL: string
}