mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 17:03:42 +00:00
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;
|