@orangecheck/gate / MinimalReq
Interface: MinimalReq
Defined in: types.ts:19
Shape that the gate middleware reads from. Works with Express req,
Next.js NextApiRequest, or any object with the relevant fields.
Properties
| Property | Type | Defined in |
|---|---|---|
<a id="property-body"></a> body? | any | types.ts:24 |
<a id="property-cookies"></a> cookies? | Record<string, string | undefined> | types.ts:21 |
<a id="property-headers"></a> headers? | Record<string, string | string[] | undefined> | types.ts:20 |
<a id="property-method"></a> method? | string | types.ts:26 |
<a id="property-query"></a> query? | Record<string, string | string[] | undefined> | types.ts:22 |
<a id="property-url"></a> url? | string | types.ts:25 |