feat: Add NextflowRelease type

This commit is contained in:
Thomas A. Christensen II 2023-12-23 10:21:56 -07:00
parent d736e9561d
commit 7cc27d1095

9
src/NextflowRelease.ts Normal file
View 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
}