UNPKG

458 BTypeScriptView Raw
1
2//#region lib/server-runtime/data.d.ts
3/**
4 * An object of unknown type for route loaders and actions provided by the
5 * server's `getLoadContext()` function. This is defined as an empty interface
6 * specifically so apps can leverage declaration merging to augment this type
7 * globally: https://www.typescriptlang.org/docs/handbook/declaration-merging.html
8 */
9interface AppLoadContext {
10 [key: string]: unknown;
11}
12//#endregion
13export { AppLoadContext };
\No newline at end of file