@eagleoutice/flowr - v2.10.10
    Preparing search index...

    Restricts/aliases which exports of a package are attached; undefined fields attach every export.

    interface AttachSpec {
        all?: boolean;
        exclude?: ReadonlySet<string>;
        include?: ReadonlyMap<string, string>;
        namespaceOnly?: boolean;
    }
    Index

    Properties

    all?: boolean

    attach every export (import::from .all, box::use(pkg[...]))

    exclude?: ReadonlySet<string>

    attach all exports except these (import::from .except)

    include?: ReadonlyMap<string, string>

    attached exports as attachedName to exportName (import::from/box::use selection or aliasing)

    namespaceOnly?: boolean