postcss-values-parser
Version:
A CSS property value parser for use with PostCSS
10 lines (9 loc) • 329 B
TypeScript
import { Root as PostCssRoot } from 'postcss';
import { Node, NodeOptions } from './Node.js';
export declare class Root extends PostCssRoot {
readonly value = "";
type: 'root';
constructor(options?: NodeOptions);
add(node: Node): this;
toString(stringifier?: import("../stringify.js").Stringifier): string;
}