UNPKG

@tanstack/start-server-core

Version:

Modern and scalable routing for React applications

11 lines (10 loc) 493 B
import { Awaitable } from '@tanstack/router-core'; export type HandlerInlineCssOption = boolean | ((ctx: { request: Request; }) => Awaitable<boolean>); export declare function getStaticHandlerInlineCssDefault(handlerInlineCss: HandlerInlineCssOption | undefined): boolean | undefined; export declare function resolveInlineCssForRequest(opts: { request: Request; handlerInlineCss: HandlerInlineCssOption | undefined; requestInlineCss: boolean | undefined; }): Promise<boolean>;