angular-odata
Version:
Client side OData typescript library for Angular
11 lines (10 loc) • 345 B
TypeScript
import { EntitySetConfig } 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: EntitySetConfig, schema: ODataSchema);
}