epiphany/node_modules/postcss-custom-properties/dist/is-var-function.d.ts

4 lines
184 B
TypeScript
Raw Normal View History

2023-12-09 22:48:07 -08:00
import type { FunctionNode, Node } from 'postcss-value-parser';
export declare function isVarFunction(node: Node): node is FunctionNode;
export declare const HAS_VAR_FUNCTION: RegExp;