Skip to content

CodeMirrorModule.on method

CodeMirrorModule › on

Unofficial

Registers an event handler on the given target.

Signature:

on(target: unknown, type: string, f: (...args: unknown[]) => void): void

Parameters:

ParameterTypeDescription
targetunknownThe target object.
typestringThe event type.
f(...args: unknown[]) => voidThe event handler.

Returns: void