on
Unofficial
Registers an event handler on the given target.
Import:
import type { on } from '@obsidian-typings/obsidian-public-latest';Signature:
function on(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. |
Returns: void
Links to this page: