Files
github-actions-magento2/supported-version/src/kind/kinds.ts
T
2025-04-09 09:51:01 -04:00

13 lines
258 B
TypeScript

/**
* Acceptable arguments for version `kind`
*/
export const KNOWN_KINDS = {
'currently-supported': true,
'latest': true,
'custom': true,
'nightly': true,
'recent': true,
'all': true,
}
export type Kind = keyof typeof KNOWN_KINDS;