UNPKG

angular-odata

Version:

Client side OData typescript library for Angular

11 lines (10 loc) 355 B
import { ODataEntitySetConfig } from '../types'; import { ODataSchemaElement } from './element'; import { ODataSchema } from './schema'; export declare class ODataEntitySet extends ODataSchemaElement { entityType: string; service: { new (...params: any[]): any; }; constructor(config: ODataEntitySetConfig, schema: ODataSchema); }