/** * Allow to configure server on fly */ declare class ServerApi { /** * Block access to index.html */ protected isAllowIndexHtml: boolean; /** * Server can return index.html */ /** * Server can return index.html */ hasAccessIndexHtml(): boolean; /** * Allow/disallow return index.html on request */ /** * Allow/disallow return index.html on request */ changeAccessIndexHtml(isAllowed: boolean): void; } export { ServerApi as default };