-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod.ts
58 lines (44 loc) · 1.13 KB
/
mod.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
import { State } from "./lib/state.ts";
export { createServer } from "./lib/server.ts";
export { useQuery } from "./lib/query.ts";
export { State };
export declare type StateInit<T extends any> =
| Iterable<[string, T]>
| Map<string, T>
| [string, T][]
| Record<string, T>;
export declare interface TContext<T = any> {
state: State<T>;
}
export declare interface ElementParams {
selector?: string;
}
export declare interface PageParams {
url?: string;
source?: string;
}
export declare interface TextParams extends ElementParams {
trim?: boolean;
}
export declare interface AttrParams {
name?: string;
trim?: boolean;
}
export declare interface IndexParams {
parent?: string;
}
export declare interface AllParams
extends PageParams, IndexParams, ElementParams, TextParams, AttrParams {
attr?: string;
}
export declare type TParams = Partial<AllParams>;
export declare type Variables = { [key: string]: any };
export declare interface QueryOptions {
concurrency?: number;
fetch_options?: RequestInit;
variables?: Variables;
operationName?: string;
}
export declare interface IOptional {
endpoint?: string;
}