UNPKG

646 BTypeScriptView Raw
1/**
2 * @license
3 * MOST Web Framework 2.0 Codename Blueshift
4 * Copyright (c) 2017, THEMOST LP All rights reserved
5 *
6 * Use of this source code is governed by an BSD-3-Clause license that can be
7 * found in the LICENSE file at https://themost.io/license
8 */
9import {HttpApplication} from "./app";
10import {HttpJsonResult} from "./mvc";
11import {ODataModelBuilder} from "@themost/data";
12
13export declare class ODataModelBuilderConfiguration {
14 static config(app: HttpApplication): Promise<any>;
15 static configSync(app: HttpApplication): ODataModelBuilder;
16}
17
18export declare class ODataJsonResult extends HttpJsonResult {
19 entitySet: any;
20}