epiphany/node_modules/@csstools/css-parser-algorithms/dist/parse/parse-component-value.d.ts
2023-12-09 22:48:07 -08:00

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