UNPKG

angular-odata

Version:

Client side OData typescript library for Angular

11 lines (10 loc) 441 B
import { EntityContainerConfig } from '../types'; import { ODataSchemaElement } from './element'; import { ODataEntitySet } from './entity-set'; import { ODataSchema } from './schema'; import { ODataSingleton } from './singleton'; export declare class ODataEntityContainer extends ODataSchemaElement { entitySets: ODataEntitySet[]; singletons: ODataSingleton[]; constructor(config: EntityContainerConfig, schema: ODataSchema); }