List interface.

interface IList {
    _list: any[];
    count: number;
}

Implemented by

Properties

Properties

_list: any[]

Here's the list.

count: number

This is the number of listings.