/** * The details of a single Twitter List. * * @public */ export interface IList { /** The date and time of creation of the list, int UTC string format. */ createdAt: string; /** The ID of the user who created the list. */ createdBy: string; /** The list description. */ description?: string; /** Whether the user is following the list or not. */ isFollowing: boolean; /** The rest id of the list. */ id: string; /** Whether the user is a member of the list or not. */ isMember: boolean; /** The number of memeber of the list. */ memberCount: number; /** The name of the list. */ name: string; /** The number of subscribers of the list. */ subscriberCount: number; }