mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-22 02:14:41 -05:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
// biome-ignore lint/correctness/noUnusedImports: needed for type augmentation
|
|
import type * as React from "react";
|
|
|
|
declare module "react" {
|
|
interface CSSProperties {
|
|
[key: `--${string}`]: string | number | undefined;
|
|
}
|
|
}
|