You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
636 B
9 lines
636 B
2 years ago
|
import valueParser from 'postcss-value-parser';
|
||
|
import type { FunctionNode, Node, WordNode } from 'postcss-value-parser';
|
||
|
import type { Declaration, Result } from 'postcss';
|
||
|
import { pluginOptions } from './index';
|
||
|
export declare function isVarNode(node: Node): boolean;
|
||
|
export declare function validateArgumentsAndTypes(node: FunctionNode, decl: Declaration, result: Result, options: pluginOptions): valueParser.Dimension[] | undefined;
|
||
|
export declare function optionallyWarn(decl: Declaration, result: Result, message: string, options: pluginOptions): void;
|
||
|
export declare function functionNodeToWordNode(fn: FunctionNode): WordNode;
|