sendou.ink/types/react.d.ts
Kalle dd1adad94b
Some checks are pending
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
BIome v2 upgrade
2025-06-22 16:49:27 +03:00

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;
}
}