6 lines
381 B
TypeScript
6 lines
381 B
TypeScript
|
import { ComponentValue } from '@csstools/css-parser-algorithms';
|
||
|
export declare function isNumber(componentValue: ComponentValue): boolean;
|
||
|
export declare function isDimension(componentValue: ComponentValue): boolean;
|
||
|
export declare function isIdent(componentValue: ComponentValue): boolean;
|
||
|
export declare function isEnvironmentVariable(componentValue: ComponentValue): boolean;
|