@winglet/style-utils
Version:
Comprehensive CSS and style management utilities including className manipulation, CSS compression, and universal style manager for TypeScript projects
13 lines (12 loc) • 362 B
TypeScript
/**
* Style insertion target - either a document or shadow root
*/
export type StyleRoot = Document | ShadowRoot;
/**
* Configuration options for StyleManager
*/
export interface StyleManagerConfig {
/** The shadow root to attach styles to. If not provided, uses document */
shadowRoot?: ShadowRoot;
}
export declare const getUniqueId: () => string;