Interface Wantlist

interface Wantlist {
    length: number;
    add(cid, priority, wantType): void;
    contains(cid): boolean;
    forEach(fn): void;
    get(cid): WantListEntry;
    remove(cid): void;
    removeForce(cid): void;
    sortedEntries(): Map<string, WantListEntry>;
}

Properties

length: number

Methods

  • Parameters

    • fn: ((entry, key) => void)
        • (entry, key): void
        • Parameters

          Returns void

    Returns void

  • Parameters

    • cid: string

    Returns void

Generated using TypeDoc