-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdeps.ts
56 lines (49 loc) · 1.77 KB
/
deps.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
/// <reference lib="DOM.Iterable" />
/// <reference lib="DOM.AsyncIterable" />
// Std
export {
Status,
STATUS_TEXT,
// AWS
export { DynamoDB } from "https://aws-api.deno.dev/v0.2/services/dynamodb.ts?actions=GetItem,PutItem,Scan";
export {
marshall,
unmarshall,
// Preact
export type {
ComponentChildren,
JSX,
VNode,
// Twind
export {
getStyleTag,
shim,
virtualSheet,
// Font Awesome
export {
faDiscord,
faGithub,
faTwitter,
// Prism
// @ts-ignore TS2339
export const Highlight = PrismExports.default;
// Router
export { router } from "./router.ts";
export type { Match } from "./router.ts";