POST: {
    headers: {
        Accept: "application/json";
        Content-Type: "application/json";
    };
    method: "POST";
} = ...

Type declaration

  • Readonly headers: {
        Accept: "application/json";
        Content-Type: "application/json";
    }
    • Readonly Accept: "application/json"
    • Readonly Content-Type: "application/json"
  • Readonly method: "POST"

Generated using TypeDoc