hono
Version:
Web framework built on Web Standards
15 lines (14 loc) • 465 B
TypeScript
import type { Hono } from '../../hono';
import type { Env } from '../../types';
/**
* Get dirname
* @param path File Path
* @returns Parent dir path
*/
export declare const dirname: (path: string) => string;
export declare const joinPaths: (...paths: string[]) => string;
interface FilterStaticGenerateRouteData {
path: string;
}
export declare const filterStaticGenerateRoutes: <E extends Env>(hono: Hono<E>) => FilterStaticGenerateRouteData[];
export {};