UNPKG

312 BTypeScriptView Raw
1import { Module } from "./module.js";
2export type ElementStyle = Partial<CSSStyleDeclaration>;
3export type VNodeStyle = ElementStyle & Record<string, string> & {
4 delayed?: ElementStyle & Record<string, string>;
5 remove?: ElementStyle & Record<string, string>;
6};
7export declare const styleModule: Module;