Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1x 1x | import { LoaderFunction, useLoaderData as innerUseLoaderData, Await as InnerAwait } from 'react-router-dom';
export type UseLoaderDataFunction = <T extends LoaderFunction>() => LoaderData<T>;
export type LoaderData<T extends LoaderFunction> = Exclude<Awaited<ReturnType<T>>, Response>;
export interface AwaitProps<T> {
children:
| React.ReactNode
| {
(data: Awaited<T>): React.ReactNode;
};
errorElement?: React.ReactNode;
resolve: T;
}
export type AwaitComponent = <T>(props: AwaitProps<T>) => React.JSX.Element;
export const useLoaderData = innerUseLoaderData as UseLoaderDataFunction;
export const Await = InnerAwait as AwaitComponent;
|