mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
5 lines
279 B
TypeScript
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;
|