Interface Env

Source
Expand description

Shared environment passed through parsing and rendering.

Plugins may use it to store arbitrary data.


interface Env {
    references?: Record<string, { title: string; href: string }>;
    [key: string | symbol]: unknown;
}

Properties§

§references?: Record<string, { title: string; href: string }>