class Server implements AsyncIterable<ServerRequest>import { Server } from "https://deno.land/std@0.39.0/http/mod.ts"; ConstructorsnewServer(listener: Listener)Propertiesprivateclosing: booleanprivateconnections: Conn[]MethodsprivateacceptConnAndIterateHttpRequests(mux: MuxAsyncIterator<ServerRequest>): AsyncIterableIterator<ServerRequest>privateiterateHttpRequests(conn: Conn): AsyncIterableIterator<ServerRequest>privatetrackConnection(conn: Conn): voidprivateuntrackConnection(conn: Conn): voidclose(): void[Symbol.asyncIterator](): AsyncIterableIterator<ServerRequest>