You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
setup-nextflow/src/nextflow-release.ts

11 lines
224 B
TypeScript

/**
* Houses the pertinent data that GitHub exposes for each Nextflow release
*/
export type NextflowRelease = {
version: string
isEdge: boolean
downloadUrl: string
downloadUrlAll: string
published_at?: string
}