UNPKG

@lynx-js/web-core

Version:

This is an internal experimental package, do not use

13 lines (12 loc) 417 B
interface CSSRule { sel: string[][][]; decl: [string, string][]; } interface OneInfo { content: string[]; rules: CSSRule[]; imports?: string[]; } type StyleInfo = Record<string, OneInfo>; export declare function loadStyleFromJSON(styleInfo: StyleInfo, configEnableCSSSelector: boolean, transformVW: boolean, transformVH: boolean, transformREM: boolean, entryName?: string): Uint8Array; export {};