Interface APIFetchOptions<Body>

interface APIFetchOptions<Body> {
    body?: Body;
    method: string;
}

Type Parameters

  • Body = any

Properties

Properties

body?: Body
method: string