@lottojs/lotto
Version:
Simple, lightweight and dependency-free NodeJS web application framework.
15 lines (14 loc) • 444 B
TypeScript
import { Router } from './router/router';
import { ServerOptions } from './server/server';
interface LottoOptions extends ServerOptions {
prefix?: string;
}
interface AbstractLotto {
init: (after?: (...args: unknown[]) => void) => void;
}
export declare class Lotto extends Router implements AbstractLotto {
private server;
constructor(options?: LottoOptions);
init(after?: (...args: unknown[]) => void): void;
}
export {};