0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

feat: Add APIRoute second generic (#9618)

This commit is contained in:
임동현(Ivan) 2024-01-05 22:58:49 +09:00 committed by GitHub
parent 47b951b388
commit 401fd3e8c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
"astro": patch
---
Adds a second generic parameter to `APIRoute` to type the `params`

View file

@ -2262,8 +2262,8 @@ type Routing = {
strategy: 'pathname';
};
export type APIRoute<Props extends Record<string, any> = Record<string, any>> = (
context: APIContext<Props>
export type APIRoute<Props extends Record<string, any> = Record<string, any>, APIParams extends Record<string, string | undefined> = Record<string, string | undefined>> = (
context: APIContext<Props, APIParams>
) => Response | Promise<Response>;
export interface EndpointHandler {