Skip to content

Commit

Permalink
Fix the declaration of ReturnRule._returnExpression (#2455)
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 authored Dec 7, 2024
1 parent 1536dc0 commit 7a6722c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sass-parser/lib/src/statement/return-rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class ReturnRule
if (returnExpression) returnExpression.parent = this;
this._returnExpression = returnExpression;
}
private _returnExpression?: Expression;
declare _returnExpression?: Expression;

constructor(defaults: ReturnRuleProps);
/** @hidden */
Expand Down

0 comments on commit 7a6722c

Please sign in to comment.