(id: string)
| 16 | await fetchApiData<Metadata>(METADATA_URL + id); |
| 17 | |
| 18 | const getVariable = async (id: string): Promise<VariableData> => |
| 19 | await fetchApiData<VariableData>(VARIABLE_URL(id)); |
| 20 | |
| 21 | const getAxisRegistry = async (): Promise<AxisRegistryAll> => |
| 22 | await fetchApiData<AxisRegistryAll>(AXIS_REGISTRY_URL); |
no test coverage detected