epiphany/node_modules/postcss-custom-properties/dist/is-var-function.d.ts
2023-12-09 22:48:07 -08:00

3 lines
184 B
TypeScript

import type { FunctionNode, Node } from 'postcss-value-parser';
export declare function isVarFunction(node: Node): node is FunctionNode;
export declare const HAS_VAR_FUNCTION: RegExp;