registerHelper
Unofficial
Registers a helper value for a specific type.
Import:
import type { registerHelper } from '@obsidian-typings/obsidian-catalyst-latest';Signature:
function registerHelper(type: string, name: string, value: unknown): voidParameters:
| Parameter | Type | Description |
|---|---|---|
type | string | The helper type. |
name | string | The helper name. |
value | unknown | The helper implementation. |
Returns: void