epiphany/node_modules/@csstools/media-query-list-parser/dist/util/component-value-is.d.ts
2023-12-09 22:48:07 -08:00

5 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;