UNPKG

styled-components

Version:

CSS for the <Component> Age. Style components your way with speed, strong typing, and flexibility.

12 lines (11 loc) 385 B
import { Tag } from './types'; /** Create a GroupedTag with an underlying Tag implementation */ export declare const makeGroupedTag: (tag: Tag) => { groupSizes: Uint32Array; length: number; tag: Tag; indexOfGroup(group: number): number; insertRules(group: number, rules: string[]): void; clearGroup(group: number): void; getGroup(group: number): string; };