-
Notifications
You must be signed in to change notification settings - Fork 0
/
hizzy.d.ts
84 lines (73 loc) · 1.6 KB
/
hizzy.d.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
import {
useCallback,
useContext,
useDebugValue,
useErrorBoundary,
useId,
useImperativeHandle,
useLayoutEffect,
useMemo,
useReducer,
useRef,
useState
} from "preact/hooks/src/index";
import {
cloneElement,
Component,
createContext,
createElement,
createRef,
Fragment,
h,
hydrate,
isValidElement,
options,
render,
toChildArray
} from "preact";
import {Inputs} from "preact/hooks";
import {HizzyConfiguration as Conf} from "./api";
export function openPage(url: string): void;
export function reloadPage(): void;
export const LinkComponent: (props: {
path: string | Location
}) => any;
export function useAddon(name: string): any;
export function useEffect(effect: () => any | (() => any), inputs?: Inputs): void;
/** @internal */
export const config: Record<string, string>;
/** @internal */
export const args: Record<string, string | boolean>;
export function resolvePath(path: string): string;
export function fetch(url: RequestInfo | URL, init?: RequestInit & {
json?: boolean
}): Promise<string>;
export function fetch(url: RequestInfo | URL, init?: RequestInit & {
json: true
}): Promise<Object>;
export {Conf as UserConfig};
export {
useCallback,
useContext,
useDebugValue, /*useEffect,*/
useErrorBoundary,
useId,
useImperativeHandle,
useLayoutEffect,
useMemo,
useReducer,
useRef,
useState,
cloneElement,
Component,
createContext,
createElement,
createRef,
Fragment,
h,
hydrate,
isValidElement,
options,
render,
toChildArray
};