Skip to content

Commit

Permalink
Fix knip warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rcj-siteimprove committed Nov 28, 2024
1 parent e49d057 commit a4853eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/alfa-style/src/property/mask-origin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ type Computed = Specified;

/**
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/mask-origin}
*
* @internal
*/
export default Longhand.of<Specified, Computed>(
Expand Down
2 changes: 1 addition & 1 deletion packages/alfa-style/src/property/mask-position.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const parse = List.parseCommaSeparated(Position.Component.parseHorizontal);
/**
* @internal
*/
export const initialItem: Computed.Item = Position.Side.of(
const initialItem: Computed.Item = Position.Side.of(
Keyword.of("left"),
Percentage.of(0),
);
Expand Down
4 changes: 2 additions & 2 deletions packages/alfa-style/src/property/mask-size.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const parseDimension = either(LengthPercentage.parse, Keyword.parse("auto"));
/**
* @internal
*/
export const parse = either(
const parse = either(
map(
pair(
parseDimension,
Expand All @@ -63,7 +63,7 @@ const parseList = List.parseCommaSeparated(parse);
/**
* @internal
*/
export const initialItem = Tuple.of(Keyword.of("auto"), Keyword.of("auto"));
const initialItem = Tuple.of(Keyword.of("auto"), Keyword.of("auto"));

/**
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/background-size}
Expand Down

0 comments on commit a4853eb

Please sign in to comment.