CodeMirrorModule.off method
CodeMirrorModule › off
Unofficial
Removes an event handler from the given target.Signature:
off(target: unknown, type: string, f: (...args: unknown[]) => void): voidParameters:
| Parameter | Type | Description |
|---|---|---|
| target | unknown | The target object. |
| type | string | The event type. |
| f | (...args: unknown[]) => void | The event handler to remove. |
Returns: void