Skip to content

Commit

Permalink
fix lint issues and update code to latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodwine committed Dec 5, 2024
1 parent 70eadef commit 9a1dce7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/sass-parser/lib/src/parameter-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class ParameterList
// This *should* only ever be called by the superclass constructor.
this._nodes = nodes;
}
private _nodes?: Array<Parameter>;
private declare _nodes?: Array<Parameter>;

/**
* The name of the rest parameter (such as `args` in `...$args`) in this
Expand Down
2 changes: 1 addition & 1 deletion pkg/sass-parser/lib/src/statement/error-rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class ErrorRule
if (errorExpression) errorExpression.parent = this;
this._errorExpression = errorExpression;
}
declare private _errorExpression?: Expression;
private declare _errorExpression?: Expression;

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

0 comments on commit 9a1dce7

Please sign in to comment.