styled-components
Version: 
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress
12 lines (11 loc) • 385 B
TypeScript
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;
};