Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/start/src/server/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export interface APIEvent extends FetchEvent {
params: { [key: string]: string };
}

export type APIHandler = (event: APIEvent) => Promise<any>;
export type APIHandler = (event: APIEvent) => any;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what was the reason for this change?

Copy link
Contributor Author

@huseeiin huseeiin Mar 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what was the reason for this change?

obviously so you can return non-promise like export const GET: APIHandler = () => "hi" not be forced into async like export const GET: APIHandler = async () => "hi"


export interface ServerFunctionMeta {
id: string;
Expand Down
Loading