UNPKG

kequapp

Version:

A minimal, zero-magic Node web framework built on native APIs

9 lines (8 loc) 273 B
import type { TAction, TParams, TPathname } from '../../types.ts'; type TStaticDirectoryOptions = { location: TPathname; index?: string[]; contentTypes?: TParams; }; export default function staticDirectory(options: TStaticDirectoryOptions): TAction; export {};