Delete canon-compat.d.ts

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2025-06-11 13:39:22 +01:00
parent 7ae3676223
commit 765df414aa
-14
View File
@@ -1,14 +0,0 @@
// Type compatibility fixes for Canon (React 18) components used in React 19 environment
declare module 'csstype' {
interface Properties {
// Make appearance property compatible between React 18 and 19
appearance?:
| 'none'
| 'auto'
| 'textfield'
| 'menulist-button'
| 'revert-layer' // React 19 addition
| string; // Allow any string for forward compatibility
}
}