/** * @module types */ import type { CanUndef, HTMLTagNames, IDictionary } from './types'; export type StyleValue = number | string | null | undefined; export type IStyle = IDictionary; export interface IStyleOptions { style: CanUndef; element: CanUndef; className: CanUndef; defaultTag: CanUndef; } export type CommitMode = | 'initial' | 'wrap' | 'unwrap' | 'change' | 'unset' | 'replace';