-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
41 lines (33 loc) · 2.05 KB
/
index.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
// deno-lint-ignore-file no-explicit-any
export type JSX = JSXFactory | JSXElement | JSXValue
export type JSXReturn = JSXFactory | JSXElement | JSXFragment
export type JSXFactoryFunc = (props: Record<string, any>, elem: HTMLElement) => JSXReturn
export type JSXFactory = {
$$typeof: string,
type: JSXFactoryFunc,
props: Record<string, any> & {children: JSX[] | JSX},
key: string | undefined,
ref: JSXFactory | JSXElement | undefined,
_owner: JSXElement | undefined
}
export type JSXElement = {
$$typeof: string,
type: string,
props: Record<string, any> & {children: JSX[] | JSX}
key: string | undefined,
ref: JSXFactory | JSXElement | undefined,
_owner: JSXElement | undefined
}
export type JSXValue = any
export type JSXFragment = JSXElement
export function render(elem: JSXFactory | JSXElement, $parent: HTMLElement): HTMLElement
export function update($elem: HTMLElement, elem: JSXFactory | JSXElement): HTMLElement
export function unrender($elem: HTMLElement): HTMLElement
export function Context(props: {name: string, value: any, children: JSX[] | JSX}, elem: HTMLElement): JSXReturn[] | JSXReturn
export function ErrorBoundary(props: {error?: string, path?: string, children: JSX[] | JSX}, elem: HTMLElement): JSXReturn[] | JSXReturn
export function Lazy(props: Record<string, any> & {loader: () => Promise<JSX>, children: JSX[] | JSX}, elem: HTMLElement): JSXReturn
export function Suspense(props: {suspending: boolean, fallback: JSX, children: JSX[] | JSX}, elem: HTMLElement): JSXReturn[] | JSXReturn
export function Service(props: {name: string, value: string} & { children: JSX[] | JSX }, elem: HTMLElement): JSXReturn[] | JSXReturn
export function jsx(type: string| JSXFactoryFunc| undefined, props: Record<string, any> & {children: any | any[]}, key: any | undefined): JSXReturn
export function jsxs(type: string| JSXFactoryFunc| undefined, props: Record<string, any> & {children: any | any[]}, key: any | undefined): JSXReturn
export function jsxLegacy(type: string| JSXFactoryFunc| undefined, props: Record<string, any>, children: any | any[]): JSXReturn