Const
Symbol used to attach per-call middleware overrides to a RequestInit object. Middlewares can read their own options from this property.
RequestInit
// Inside a middleware:const opts = getPerCallOptions<MyOptions>(init, 'myMiddleware'); Copy
// Inside a middleware:const opts = getPerCallOptions<MyOptions>(init, 'myMiddleware');
Symbol used to attach per-call middleware overrides to a
RequestInitobject. Middlewares can read their own options from this property.