Skip to content

registerHelper

Unofficial

Registers a helper value for a specific type.

Import:

import type { registerHelper } from '@obsidian-typings/obsidian-public-latest';

Signature:

function registerHelper(type: string, name: string, value: unknown): void

Parameters:

ParameterTypeDescription
typestringThe helper type.
namestringThe helper name.
valueunknownThe helper implementation.

Returns: void