UNPKG

antd-style

Version:

css-in-js solution for application combine with antd v5 token system and emotion

7 lines (6 loc) 279 B
import { SerializedStyles } from '@emotion/serialize'; /** * 将 stylish 中的 styles 取出作为 可复用的 string * @param stylish */ export declare const convertStylishToString: <T extends Record<string, SerializedStyles>>(stylish: T) => { [Key in keyof T]: string; };