From d392ff4a3265e1b11b229b05a4c781cae5741eea Mon Sep 17 00:00:00 2001 From: Damian Olszewski Date: Mon, 15 Apr 2024 12:33:57 +0200 Subject: [PATCH] Add readOnly property to ICommand interface --- src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types.ts b/src/types.ts index fa6fc2c7..9b02055d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -60,6 +60,7 @@ export interface ICommand { name: string; bindKey: ICommandBindKey; exec: string | ICommandExecFunction; + readOnly?: boolean; } export interface IAceOptions { [index: string]: any;