UNPKG

@tenoxui/browser

Version:

A JavaScript library for creating highly customized, flexible, and extensible utility-first CSS framework

18 lines (17 loc) 492 B
import { Config as CoreConfig } from 'tenoxui'; export interface Config extends CoreConfig { apply: Record<string, string>; watch: boolean; debounceDelay: number; processExisting: boolean; selector: string; styleId: string; } export interface StatusInfo { processedClasses: [number, string[]]; validClasses: [number, string[]]; isObserving: boolean; isInitialized: boolean; styleElementExists: boolean; } export type MutationCallback = () => void;