mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-06-04 14:22:57 +00:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import "csstype";
|
|
|
|
declare module "csstype" {
|
|
interface Properties {
|
|
"--max-width"?: number | string;
|
|
"--swatch-color"?: string;
|
|
"--gap"?: number | string;
|
|
"--padding"?: number | string;
|
|
}
|
|
}
|