nope-js-browser
Version:
NoPE Runtime for the Browser. For nodejs please use nope-js-node
20 lines (19 loc) • 906 B
TypeScript
/**
* @author Martin Karkowski
* @email m.karkowski@zema.de
* @desc [description]
*/
import { INopePackageLoaderConstructor } from "../index.browser";
import { IDispatcherConstructor, INopeDispatcherOptions } from "../types/nope/nopeDispatcher.interface";
/**
* Function to extract the Package-Loader. This one here includes file access.
* @param {INopeDispatcherOptions} dispatcherOptions The provided options for the Dispatcher
* @param options Settings for the creation of the Dispatcher etc.
* @returns {INopePackageLoader} The Package loader.
*/
export declare function getPackageLoader(dispatcherOptions: INopeDispatcherOptions, options?: {
packageLoaderConstructorClass?: INopePackageLoaderConstructor;
dispatcherConstructorClass?: IDispatcherConstructor;
singleton?: boolean;
useBaseServices?: boolean;
}): import("../index.browser").INopePackageLoader;