style-dictionary-utils
Version:
Utilities to use in your style dictionary config
12 lines (11 loc) • 349 B
TypeScript
import { TransformedToken } from 'style-dictionary/types';
/**
* @name isTransition
* @type filter
* @description only returns tokens of type `transition`
*/
export declare const isTransitionFilter: (token: TransformedToken) => boolean;
export declare const isTransition: {
name: string;
filter: (token: TransformedToken) => boolean;
};