@themost/data
Version:
MOST Web Framework 2.0 - ORM module
19 lines (16 loc) • 532 B
TypeScript
/**
* @license
* MOST Web Framework 2.0 Codename Blueshift
* Copyright (c) 2017, THEMOST LP All rights reserved
*
* Use of this source code is governed by an BSD-3-Clause license that can be
* found in the LICENSE file at https://themost.io/license
*/
export declare abstract class ModuleLoader {
abstract require(modulePath: string): any;
}
export declare class DefaultModuleLoader extends ModuleLoader {
constructor(executionPath: string);
getExecutionPath(): string;
require(modulePath: string): any;
}