@tanstack/solid-start
Version:
Modern and scalable routing for Solid applications
7 lines (6 loc) • 447 B
TypeScript
import { HandleServerFunctionOptions } from '@solidjs/web/server-functions/server';
import { StartStorageContext } from '@tanstack/start-storage-context';
export interface HandleSolidServerFunctionRequestOptions extends HandleServerFunctionOptions {
startContext?: Partial<StartStorageContext>;
}
export declare function handleSolidServerFunctionRequest(request: Request, options?: HandleSolidServerFunctionRequestOptions): Promise<Response>;