Skip to content

Commit 7a6722c

Browse files
authored
Fix the declaration of ReturnRule._returnExpression (#2455)
1 parent 1536dc0 commit 7a6722c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/sass-parser/lib/src/statement/return-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class ReturnRule
7878
if (returnExpression) returnExpression.parent = this;
7979
this._returnExpression = returnExpression;
8080
}
81-
private _returnExpression?: Expression;
81+
declare _returnExpression?: Expression;
8282

8383
constructor(defaults: ReturnRuleProps);
8484
/** @hidden */

0 commit comments

Comments
 (0)