1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1x | /** * @module ODataApi */ /** */ /** * Generic Class that represents a basic OData Response structure */ import { IContent, ISavedContent } from '../Content'; export class ODataCollectionResponse<T extends IContent> { // tslint:disable-next-line:naming-convention public d: { results: (T & ISavedContent)[]; __count: number; }; } |