From 39866143ab8bb3e765fbd3d9a57b5cff4fbcc158 Mon Sep 17 00:00:00 2001 From: Daniel Manning Date: Mon, 10 Jan 2022 15:39:36 +1100 Subject: [PATCH] Fix incorrect generic type parameter (#135) The introduction of the `Document` type [in this PR](https://github.com/postcss/postcss/issues/1498) incorrectly advertises that `parse` can return a `Document` object. --- lib/scss-syntax.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/scss-syntax.d.ts b/lib/scss-syntax.d.ts index 683666b..668ad1a 100644 --- a/lib/scss-syntax.d.ts +++ b/lib/scss-syntax.d.ts @@ -1,4 +1,4 @@ import * as postcss from 'postcss'; -export const parse: postcss.Parser; +export const parse: postcss.Parser; export const stringify: postcss.Stringifier;