UNPKG

358 BTypeScriptView Raw
1
2import { Func } from "./utils.js";
3
4//#region lib/types/route-module.d.ts
5type RouteModule = {
6 meta?: Func;
7 links?: Func;
8 headers?: Func;
9 loader?: Func;
10 clientLoader?: Func;
11 action?: Func;
12 clientAction?: Func;
13 HydrateFallback?: Func;
14 default?: Func;
15 ErrorBoundary?: Func;
16 [key: string]: unknown;
17};
18//#endregion
19export { RouteModule };
\No newline at end of file