@glandjs/core
Version:
Glands is a web framework for Node.js (@core)
15 lines (14 loc) • 454 B
TypeScript
import type { Logger } from '@medishn/toolkit';
import type { Explorer } from '../injector';
import type { TGlandBroker } from '../types';
export declare class ApplicationBinder {
private explorer;
private broker;
private readonly logger?;
private readonly map;
constructor(explorer: Explorer, broker: TGlandBroker, logger?: Logger);
bind(): void;
bindChannel(): void;
bindControllers(): void;
private combinePaths;
}