diff --git a/lib/index.d.ts b/lib/index.d.ts index be8b1f3..728ed93 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -122,6 +122,11 @@ declare namespace postcssValueParser { * @param bubble When set to `true`, walking will be done inside-out instead of outside-in */ walk(callback: WalkCallback, bubble?: boolean): this; + + /** + * Stringifies the node tree + */ + toString(): string; } interface ValueParser {