UNPKG

design-token-inspector

Version:

UI components built for inspecting design tokens in a live application

12 lines (11 loc) 267 B
export type RawCssRuleWithIndex = { rule: CSSStyleRule; indexInStylesheet: number; }; export type CssRuleWithVariableNames = RawCssRuleWithIndex & { variables: { property: string; variableName: string; }[]; selectors: string[]; };