-
Notifications
You must be signed in to change notification settings - Fork 375
/
index.tsx
47 lines (47 loc) · 1.37 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export { Link, Meta, Style, Stylesheet, Title } from "@solidjs/meta";
export {
Navigate,
Route,
useHref,
useIsRouting,
useMatch,
useParams,
useResolvedPath,
useRouteData,
useRoutes,
useSearchParams,
type RouteDataFunc,
type RouteDataFuncArgs as RouteDataArgs
} from "@solidjs/router";
export type { APIEvent as APIEvent } from "./api";
export {
createRouteAction,
createRouteData,
createRouteMultiAction,
FormError,
refetchRouteData,
ServerError
} from "./data";
export type { FormAction, FormMethod, FormProps, SubmitOptions } from "./data";
export { default, ErrorBoundary, ErrorMessage } from "./error-boundary";
export { clientOnly as unstable_clientOnly, island as unstable_island } from "./islands";
export { Body, Head, Html, Scripts } from "./root";
export * from "./router";
export * from "./server/responses";
export { ServerContext, useRequest as useServerContext } from "./server/ServerContext";
export type { FetchEvent, PageEvent, ServerFunctionEvent } from "./server/types";
export {
createCookie,
createCookieSessionStorage,
createMemorySessionStorage,
createSessionStorage,
parseCookie,
serializeCookie,
type CookieParseOptions,
type CookieSerializeOptions,
type SessionIdStorageStrategy,
type SessionStorage
} from "./session";
import { JSX } from "solid-js";
import "./types";
export declare function FileRoutes(): JSX.Element;