export function requestJSON()

in src/services/rest/request.ts [166:168]


export function requestJSON<T>(endpoint: string, options?: RestRequestOptions): Promise<T> {
  return request(baseUri, endpoint, options).then<T>(processResponse)
}