We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following function that I cannot get to recognize the request when using the withCookies and withContent middleware.
I tried using import { Request as IttyRequest} from 'itty-router' but I get Property 'content' does not exist on type 'Request'
import { Request as IttyRequest} from 'itty-router'
Property 'content' does not exist on type 'Request'
export async function handleRefresh(req: any): Promise<Response> { const payload: RefreshTokenData = req.content ?? {}; }
Can someone tell me how I can get the right type?
The text was updated successfully, but these errors were encountered:
I ran into this problem today and solved it like this:
Create a path and a file to track custom types src/@types/itty-router/index.d.ts:
src/@types/itty-router/index.d.ts
interface Request { content?: any; cookies?: any; params?: any; }
Add this line in tsconfig.json:
tsconfig.json
{ "compilerOptions": { + "typeRoots": ["./src/@types"], }, }
For reference: https://github.com/mkuchak/cloudflare-workers-template/blob/main/src/%40types/itty-router/index.d.ts https://github.com/mkuchak/cloudflare-workers-template/blob/main/tsconfig.json#L15
Sorry, something went wrong.
Hi @mkuchak, thanks for sharing. Do you know if this solution would extend or replace the Request interface?
This extends the interface Request
No branches or pull requests
I have the following function that I cannot get to recognize the request when using the withCookies and withContent middleware.
I tried using
import { Request as IttyRequest} from 'itty-router'
but I getProperty 'content' does not exist on type 'Request'
Can someone tell me how I can get the right type?
The text was updated successfully, but these errors were encountered: