mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-24 18:39:54 +00:00
10 lines
224 B
TypeScript
10 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
|
|
}
|