@lwc/ssr-runtime
Version:
Runtime complement to @lwc/ssr-compiler
8 lines • 746 B
TypeScript
import type { LightningElementConstructor } from './lightning-element';
import type { Stylesheets, Stylesheet } from '@lwc/shared';
import type { RenderContext } from './render';
type ForgivingStylesheets = Stylesheets | Stylesheet | undefined | null | Array<Stylesheets | undefined | null>;
export declare function hasScopedStaticStylesheets(Component: LightningElementConstructor): boolean;
export declare function renderStylesheets(renderContext: RenderContext, defaultStylesheets: ForgivingStylesheets, defaultScopedStylesheets: ForgivingStylesheets, staticStylesheets: ForgivingStylesheets, scopeToken: string, Component: LightningElementConstructor, hasScopedTemplateStyles: boolean): string;
export {};
//# sourceMappingURL=styles.d.ts.map