File size: 208 Bytes
04ec17f | 1 2 3 4 5 6 7 8 9 10 | import type * as CSS from "csstype";
declare module "csstype" {
interface Properties {
// Allow any CSS Custom Properties
// oxlint-disable-next-line no-explicit-any
[index: `--${string}`]: any;
}
}
|