-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.d.ts
45 lines (45 loc) · 1.35 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
42
43
44
45
export function render(
parentElement?: any,
routes?: any[],
initialDelay?: number
): any;
import { html } from './@types/src/rendering/index.js';
import { List } from './@types/src/rendering/index.js';
import { getRef } from './@types/src/rendering/index.js';
import { reactive } from './@types/src/rendering/index.js';
import { css } from './@types/src/rendering/index.js';
import { useEffect } from './@types/src/store/index.js';
import { useState } from './@types/src/store/index.js';
import { createStore } from './@types/src/store/index.js';
import { useStore } from './@types/src/store/index.js';
import { radio } from './@types/src/store/index.js';
export function useRouter(): any;
export function getRootElement(): any;
import { useSuspense } from './@types/src/hooks/index.js';
import { setConfig } from './@types/src/fetch/index.js';
import { setBearerToken } from './@types/src/fetch/index.js';
import { GET } from './@types/src/fetch/index.js';
import { POST } from './@types/src/fetch/index.js';
import { PUT } from './@types/src/fetch/index.js';
import { PATCH } from './@types/src/fetch/index.js';
import { DELETE } from './@types/src/fetch/index.js';
export {
html,
List,
getRef,
reactive,
css,
useEffect,
useState,
createStore,
useStore,
radio,
useSuspense,
setConfig,
setBearerToken,
GET,
POST,
PUT,
PATCH,
DELETE,
};