-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
index.ts
94 lines (84 loc) · 1.92 KB
/
index.ts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import sourceMapSupport from "source-map-support";
sourceMapSupport.install();
export { AbortController } from "abort-controller";
export type {
HeadersInit,
RequestInfo,
RequestInit,
ResponseInit,
} from "./fetch";
export { fetch, FormData, Headers, Request, Response } from "./fetch";
export { installGlobals } from "./globals";
export { createFileSessionStorage } from "./sessions/fileStorage";
export {
createFileUploadHandler as unstable_createFileUploadHandler,
NodeOnDiskFile,
} from "./upload/fileUploadHandler";
export {
createCookie,
createCookieSessionStorage,
createMemorySessionStorage,
createSessionStorage,
} from "./implementations";
export {
createReadableStreamFromReadable,
readableStreamToString,
writeAsyncIterableToWritable,
writeReadableStreamToWritable,
} from "./stream";
export {
createRequestHandler,
createSession,
isCookie,
isSession,
json,
JsonFunction,
MaxPartSizeExceededError,
redirect,
unstable_composeUploadHandlers,
unstable_createMemoryUploadHandler,
unstable_parseMultipartFormData,
} from "@remix-run/server-runtime";
export type {
ActionArgs,
ActionFunction,
AppData,
AppLoadContext,
Cookie,
CookieOptions,
CookieParseOptions,
CookieSerializeOptions,
CookieSignatureOptions,
DataFunctionArgs,
EntryContext,
ErrorBoundaryComponent,
HandleDataRequestFunction,
HandleDocumentRequestFunction,
HeadersFunction,
HtmlLinkDescriptor,
HtmlMetaDescriptor,
LinkDescriptor,
LinksFunction,
LoaderArgs,
LoaderFunction,
MemoryUploadHandlerFilterArgs,
MemoryUploadHandlerOptions,
MetaDescriptor,
MetaFunction,
PageLinkDescriptor,
RequestHandler,
RouteComponent,
RouteHandle,
SerializeFrom,
ServerBuild,
ServerEntryModule,
Session,
SessionData,
SessionIdStorageStrategy,
SessionStorage,
SignFunction,
TypedResponse,
UnsignFunction,
UploadHandlerPart,
UploadHandler,
} from "@remix-run/server-runtime";