Type alias ApiroxyData

ApiroxyData: {
    api: string;
    method: "GET" | "POST" | "PATCH" | "DELETE" | "PUT";
    route: string;
} & {
    [x: string]: ((...value) => ApiroxyData);
}

Type declaration

  • api: string
  • method: "GET" | "POST" | "PATCH" | "DELETE" | "PUT"
  • route: string

Type declaration

Generated using TypeDoc