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:
parent
47b951b388
commit
401fd3e8c8
2 changed files with 7 additions and 2 deletions
5
.changeset/fair-bottles-lie.md
Normal file
5
.changeset/fair-bottles-lie.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"astro": patch
|
||||
---
|
||||
|
||||
Adds a second generic parameter to `APIRoute` to type the `params`
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue