element-web/patches/postcss-mixins.patch
renovate[bot] 793c4ff110
Update css (#32552)
* Update css

* Patch weak types in postcss-mixins

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

---------

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
2026-03-20 15:17:07 +00:00

14 lines
405 B
Diff

diff --git a/index.d.ts b/index.d.ts
index 5b070312004db8492f02db50bf99f5057ce793eb..a9f642c723e59cb662810ef9d8e9f14664f58bb7 100644
--- a/index.d.ts
+++ b/index.d.ts
@@ -5,7 +5,7 @@ declare interface MixinOutput {
}
declare interface Mixin {
- (mixinAtRule: AtRule, ...args: string[])
+ (mixinAtRule: AtRule, ...args: string[]): void
}
declare type Mixins = Record<string, MixinOutput | Mixin>