Expand description
interface Env {
references?: Record<string, { title: string; href: string }>;
[key: string | symbol]: unknown;
}
Properties§
§
references?: Record<string, { title: string; href: string }>
Shared environment passed through parsing and rendering.
Plugins may use it to store arbitrary data.