kequapp
Version:
A minimal, zero-magic Node web framework built on native APIs
10 lines (9 loc) • 514 B
TypeScript
import type { RequestListener } from 'node:http';
import type { TBranchData } from './types.ts';
export { default as sendFile } from './built-in/helpers/send-file.ts';
export { default as staticDirectory } from './built-in/helpers/static-directory.ts';
export { default as Ex } from './built-in/tools/ex.ts';
export { default as inject } from './built-in/tools/inject.ts';
export * from './router/modules.ts';
export * from './types.ts';
export declare function createApp(structure: TBranchData): RequestListener;