You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
595 B
21 lines
595 B
import { AttachOptions, BaseServer } from "./server";
|
|
export declare class uServer extends BaseServer {
|
|
protected init(): void;
|
|
protected cleanup(): void;
|
|
/**
|
|
* Prepares a request by processing the query string.
|
|
*
|
|
* @api private
|
|
*/
|
|
private prepare;
|
|
protected createTransport(transportName: any, req: any): any;
|
|
/**
|
|
* Attach the engine to a µWebSockets.js server
|
|
* @param app
|
|
* @param options
|
|
*/
|
|
attach(app: any, options?: AttachOptions): void;
|
|
private handleRequest;
|
|
private handleUpgrade;
|
|
private abortRequest;
|
|
}
|