Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
21
Frontend-Learner/node_modules/srvx/dist/adapters/deno.d.mts
generated
vendored
Normal file
21
Frontend-Learner/node_modules/srvx/dist/adapters/deno.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import { f as Server, h as ServerOptions, r as DenoFetchHandler } from "../_chunks/types.mjs";
|
||||
import { t as FastURL } from "../_chunks/_url.mjs";
|
||||
|
||||
//#region src/adapters/deno.d.ts
|
||||
declare const FastResponse: typeof globalThis.Response;
|
||||
declare function serve(options: ServerOptions): DenoServer;
|
||||
declare class DenoServer implements Server<DenoFetchHandler> {
|
||||
#private;
|
||||
readonly runtime = "deno";
|
||||
readonly options: Server["options"];
|
||||
readonly deno: Server["deno"];
|
||||
readonly serveOptions: Deno.ServeTcpOptions | (Deno.ServeTcpOptions & Deno.TlsCertifiedKeyPem);
|
||||
readonly fetch: DenoFetchHandler;
|
||||
constructor(options: ServerOptions);
|
||||
serve(): Promise<this>;
|
||||
get url(): string | undefined;
|
||||
ready(): Promise<Server>;
|
||||
close(): Promise<void>;
|
||||
}
|
||||
//#endregion
|
||||
export { FastResponse, FastURL, serve };
|
||||
Loading…
Add table
Add a link
Reference in a new issue