mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
/**
|
|
* Acceptable arguments for version `kind`
|
|
*/
|
|
export const KNOWN_KINDS = {
|
|
'currently-supported': true,
|
|
'latest': true,
|
|
'custom': true,
|
|
'usable': true,
|
|
'nightly': true,
|
|
'recent': true,
|
|
'all': true,
|
|
}
|
|
|
|
export type Kind = keyof typeof KNOWN_KINDS; |