🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
16
node_modules/astro/dist/vite-plugin-astro-server/request.d.ts
generated
vendored
Normal file
16
node_modules/astro/dist/vite-plugin-astro-server/request.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/// <reference types="node" />
|
||||
import type http from 'node:http';
|
||||
import type { ManifestData, SSRManifest } from '../@types/astro';
|
||||
import type { DevelopmentEnvironment } from '../core/render/dev/index';
|
||||
import type { DevServerController } from './controller';
|
||||
type HandleRequest = {
|
||||
env: DevelopmentEnvironment;
|
||||
manifestData: ManifestData;
|
||||
controller: DevServerController;
|
||||
incomingRequest: http.IncomingMessage;
|
||||
incomingResponse: http.ServerResponse;
|
||||
manifest: SSRManifest;
|
||||
};
|
||||
/** The main logic to route dev server requests to pages in Astro. */
|
||||
export declare function handleRequest({ env, manifestData, controller, incomingRequest, incomingResponse, manifest, }: HandleRequest): Promise<void>;
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue