@adpt/cloud
Version:
AdaptJS cloud component library
13 lines • 368 B
TypeScript
import { Component } from "@adpt/core";
import { HttpServerProps } from "./http_server_types";
/**
* Abstract component that represents an HTTP server
* @public
*/
export declare abstract class HttpServer extends Component<HttpServerProps> {
static defaultProps: {
port: number;
scope: string;
};
}
//# sourceMappingURL=HttpServer.d.ts.map