Outcome of loading a custom-helper library — what installed and what did not.

interface LoadLibraryResult {
    installed: string[];
    skipped: { name: string; reason: string }[];
}

Properties

Properties

installed: string[]

Names of helpers successfully installed.

skipped: { name: string; reason: string }[]

Entries that were skipped, each with a reason.

Type declaration

  • name: string

    The helper name of the skipped entry.

  • reason: string

    Why it was skipped (e.g. an invalid or unsafe definition).