@adpt/cloud
Version:
AdaptJS cloud component library
26 lines • 716 B
TypeScript
import Adapt, { SFCDeclProps } from "@adpt/core";
import { HttpServerProps } from "../http";
declare const defaultProps: {
servers: {
filesRoot: string;
locations: {
match: {
type: string;
path: string;
};
dest: {
type: string;
};
}[];
}[];
port: number;
scope: string;
};
/**
* {@link http.HttpServer} implementation based on {@link https://nginx.org | nginx}
*
* @public
*/
export declare function HttpServer(propsIn: SFCDeclProps<HttpServerProps, typeof defaultProps>): Adapt.AdaptElement<Adapt.AnyProps>;
export default HttpServer;
//# sourceMappingURL=HttpServer.d.ts.map