RestOptions

The options for the REST.

Signature

export interface RestOptions

Properties

6

Methods

0

No methods.

Properties

headers?: Record<string, string>;

The headers for the REST.

@type{Record<string, string>}
body?: Record<string, unknown> | string;

The body for the REST.

@type{Record<string, unknown> | string | undefined}
params?: Record<string, string>;

The query parameters for the REST.

@type{Record<string, string>}