Files
github-actions-magento2/supported-version/src/kind/kinds.ts
T

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;