fix(types): build errors due to CodeMirror opts

This commit is contained in:
Elian Doran 2025-03-22 15:04:31 +02:00
parent 7c9a7c9ff6
commit 60d3bafc8e
No known key found for this signature in database

View File

@ -198,12 +198,13 @@ declare global {
};
lineNumbers: boolean;
lineWrapping: boolean;
keyMap: "vim" | "default";
lint: boolean;
gutters: string[];
tabindex: number;
dragDrop: boolean;
placeholder: string;
keyMap?: "vim" | "default";
lint?: boolean;
gutters?: string[];
tabindex?: number;
dragDrop?: boolean;
placeholder?: string;
readOnly?: boolean;
}
var CodeMirror: {