/** * SSR document ownership predicate. * * The API/page classifier and `SSRHandler` must agree on which pathnames SSR * renders (or sheds): the classifier defers the memory-pressure response to * SSR only for requests that actually reach it. A pathname outside this * predicate, including `/_`-prefixed infrastructure paths and extension paths * such as `GET /file.md`, belongs to another handler (for example * `MarkdownPreviewHandler`), which serves it whether or not the renderer is * under pressure, so it must still get its source freshness up front. * * @module server/handlers/request/ssr/document-ownership */ /** True when `SSRHandler` is the handler that renders or sheds this pathname. */ export declare function ssrOwnsDocumentPathname(pathname: string): boolean; /** True when the preview Markdown handler renders the pathname as an HTML document. */ export declare function markdownPreviewOwnsDocumentPathname(pathname: string): boolean; //# sourceMappingURL=document-ownership.d.ts.map