truffle-ts API reference - v0.4.2
    Preparing search index...

    Interface Finder

    interface Finder {
        isLive: boolean;
        label: string;
        search(matcher: RegExp, filters: FilterOptions): Promise<InstanceType[]>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index
    isLive: boolean

    Whether this hits real, billable AWS APIs — drives UI staleness warnings.

    label: string

    Human label for the active source: "bundled", "aws:us-east-1", "substrate".

    • Return instance types whose name matches matcher and that pass filters. The bundled impl runs this in-memory over the snapshot; a live impl fans out DescribeInstanceTypes across regions (as Go SearchInstanceTypes does).

      Parameters

      Returns Promise<InstanceType[]>