cs
This commit is contained in:
14
node_modules/@ant-design/cssinjs/lib/util/css-variables.d.ts
generated
vendored
Normal file
14
node_modules/@ant-design/cssinjs/lib/util/css-variables.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export declare const token2CSSVar: (token: string, prefix?: string) => string;
|
||||
export declare const serializeCSSVar: <T extends Record<string, any>>(cssVars: T, hashId: string, options?: {
|
||||
scope?: string;
|
||||
}) => string;
|
||||
export type TokenWithCSSVar<V, T extends Record<string, V> = Record<string, V>> = {
|
||||
[key in keyof T]?: string | V;
|
||||
};
|
||||
export declare const transformToken: <V, T extends Record<string, V> = Record<string, V>>(token: T, themeKey: string, config?: {
|
||||
prefix?: string | undefined;
|
||||
ignore?: { [key in keyof T]?: boolean | undefined; } | undefined;
|
||||
unitless?: { [key_1 in keyof T]?: boolean | undefined; } | undefined;
|
||||
preserve?: { [key_2 in keyof T]?: boolean | undefined; } | undefined;
|
||||
scope?: string | undefined;
|
||||
} | undefined) => [TokenWithCSSVar<V, T>, string];
|
||||
Reference in New Issue
Block a user