UNPKG

@styn/plugin-tokenizer

Version:

Create tokens to use in your styn styles

7 lines (6 loc) 193 B
import { StynPlugin } from "styn"; declare type TokenList = { [token: string]: string | number | TokenList; }; export declare const tokenizer: (tokens: TokenList) => StynPlugin; export {};