(x: string)
| 18 | const axisRegistryQueries = ['name', 'tag'] as const; |
| 19 | type AxisRegistryQueries = (typeof axisRegistryQueries)[number]; |
| 20 | const isAxisRegistryQuery = (x: string): x is AxisRegistryQueries => |
| 21 | axisRegistryQueries.includes(x as AxisRegistryQueries); |
| 22 | |
| 23 | export type { AxisRegistry, AxisRegistryDownload, VariableList }; |
| 24 |