interface BoxedBaseDefinition {
    description?: string | string[];
    name: string;
    scope: undefined | RuntimeScope;
    url?: string;
    wikidata?: string;
    reset(): any;
}

Hierarchy (view full)

Properties

description?: string | string[]
name: string
scope: undefined | RuntimeScope

The scope this definition belongs to.

This field is usually undefined, but its value is set by getDefinition()

url?: string
wikidata?: string

Methods

  • When the environment changes, for example the numerical precision, call reset() so that any cached values can be recalculated.

    Returns any