interface GenericList<T> {
    items: T[];
    total: number;
}

Type Parameters

  • T

Properties

Properties

items: T[]
total: number