(params: object)
| 1 | import { request } from '../utils/index' |
| 2 | |
| 3 | const createApiKeys = async (params: object) => { |
| 4 | const project_base_url = `api/v1` |
| 5 | return await request.post(`${project_base_url}/apikeys`, params) |
| 6 | } |
| 7 | const getApiKeysList = async <T extends Record<string, string>>( |
| 8 | params: T, |
| 9 | ) => { |
no outgoing calls
no test coverage detected