angular-odata
Version:
Client side OData typescript library for Angular
11 lines (10 loc) • 348 B
TypeScript
import { SingletonConfig } from '../types';
import { ODataSchemaElement } from './element';
import { ODataSchema } from './schema';
export declare class ODataSingleton extends ODataSchemaElement {
singletonType: string;
service: {
new (...params: any[]): any;
};
constructor(config: SingletonConfig, schema: ODataSchema);
}