django-vue3-admin-web/node_modules/snabbdom/build/modules/style.d.ts
2025-10-20 21:21:14 +08:00

8 lines
312 B
TypeScript

import { Module } from "./module.js";
export type ElementStyle = Partial<CSSStyleDeclaration>;
export type VNodeStyle = ElementStyle & Record<string, string> & {
delayed?: ElementStyle & Record<string, string>;
remove?: ElementStyle & Record<string, string>;
};
export declare const styleModule: Module;