Files
DeviceManager/node_modules/@csstools/css-parser-algorithms/dist/parse/parse-component-value.d.ts

5 lines
279 B
TypeScript

import { CSSToken, ParseError } from '@csstools/css-tokenizer';
export declare function parseComponentValue(tokens: Array<CSSToken>, options?: {
onParseError?: (error: ParseError) => void;
}): import("../consume/consume-component-block-function").ComponentValue | undefined;