css.d.ts 211 B

12345678910
  1. import "csstype";
  2. declare module "csstype" {
  3. interface Properties {
  4. "--max-width"?: number | string;
  5. "--swatch-color"?: string;
  6. "--gap"?: number | string;
  7. "--padding"?: number | string;
  8. }
  9. }