From 90ca82e1faac7260b6dd5ba4782f56bf38b6b89c Mon Sep 17 00:00:00 2001 From: Sarsa Murmu Date: Mon, 11 Jan 2021 18:47:12 +0530 Subject: [PATCH] Add declaration for `ParsedValue.toString()` method --- lib/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) 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 {