UNPKG

cocori-ng

Version:

Cocori-ng is an Angular full of great components & utilites based on Material

13 lines (12 loc) 272 B
export interface Odata<T = any> { d: { __count: number; results: T[]; }; } export declare class OdataClass { private datasource; setDatasource(datasource: Odata<any>): void; getCount(): number; getResults(): Object[]; }