style.d.ts 215 B

123456
  1. import { Module } from "./module";
  2. export declare type VNodeStyle = Record<string, string> & {
  3. delayed?: Record<string, string>;
  4. remove?: Record<string, string>;
  5. };
  6. export declare const styleModule: Module;