Files
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

11 lines
289 B
TypeScript

// eslint-disable-next-line @typescript-eslint/no-unused-vars
import type * as CSS from "csstype";
declare module "csstype" {
interface Properties {
// Allow any CSS Custom Properties
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[index: `--${string}`]: any;
}
}