Skip to content

Commit

Permalink
Let's remove possibly unneeded type
Browse files Browse the repository at this point in the history
  • Loading branch information
Raffael Wannenmacher committed Jan 16, 2024
1 parent f77674d commit ef9f918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mui-styled-engine-sc/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,15 +281,15 @@ declare function css(
| CSSObject
| InterpolationFunction<ThemedStyledProps<object, DefaultTheme>>,
...interpolations: Interpolation<ThemedStyledProps<object, DefaultTheme>>[]
): RuleSet<ThemedStyledProps<object, DefaultTheme>>;
): RuleSet<object>;

declare function css<Props extends object>(
styles:
| TemplateStringsArray
| CSSObject
| InterpolationFunction<ThemedStyledProps<Props, DefaultTheme>>,
...interpolations: Interpolation<ThemedStyledProps<Props, DefaultTheme>>[]
): RuleSet<ThemedStyledProps<Props, DefaultTheme>>;
): RuleSet<Props>;

export { css };

Expand Down

0 comments on commit ef9f918

Please sign in to comment.