blob: 2246ba897b70a17646be47078ca61065c5d4f21a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import "csstype";
declare module "csstype" {
interface Properties {
"--max-width"?: number | string;
"--swatch-color"?: string;
"--gap"?: number | string;
"--padding"?: number | string;
}
}
|