-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.d.ts
133 lines (114 loc) · 2.95 KB
/
types.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import { StyledInterface } from "styled-components";
declare global {
const styled: StyledInterface;
const state: Record<string, any>;
const context: {
accountId: string;
widgetSrc: string;
};
function useCache(
promiseGenerator: () => Promise<any>,
dataKey: string,
options?: { subscribe?: boolean }
): null | unknown;
function fetch(
url: string,
options?: {
method?: string;
headers?: Record<string, string>;
body?: string;
}
): null | unknown;
function asyncFetch(
url: string,
options?: {
method?: string;
headers?: Record<string, string>;
body?: string;
}
): Promise<unknown>;
interface Storage {
set(key: string, value: any): void;
get(key: string, widgetSrc?: string): null | unknown;
privateSet(key: string, value: any): void;
privateGet(key: string): null | unknown;
}
namespace Near {
type Transaction = {
contractName: string;
methodName: string;
args?: Record<string, any>;
gas?: string | number;
deposit?: string | number;
};
function view(
contractName: string,
methodName: string,
args: Record<string, any>,
finality: "final" | number,
subscribe: boolean
): null | unknown;
function asyncView(
contractName: string,
methodName: string,
args?: Record<string, any>,
finality?: "final" | number,
subscribe?: boolean
): Promise<null | unknown>;
function call(
contractName: string,
methodName: string,
args?: Record<string, any>,
gas?: string | number,
deposit?: string | number
): void;
function call(txs: Transaction | Transaction[]): void;
}
namespace Social {
function get(
patterns: string | string[],
finality?: "final" | number,
options?: { subscribe?: boolean; return_deleted?: boolean }
): null | unknown;
function getr(
patterns: string | string[],
finality?: "final" | number,
options?: { subscribe?: boolean; return_deleted?: boolean }
): null | unknown;
function keys(
patterns: string | string[],
finality?: "final" | number,
options?: {
subscribe?: boolean;
return_type?: "History" | "True" | "BlockHeight";
return_deleted?: boolean;
values_only?: boolean;
}
): null | unknown;
function index(
action: string,
key: string,
options?: {
accountId?: string;
order?: "asc" | "desc";
limit?: number;
from?: number;
}
): null | unknown;
function set(
data: Record<string, any>,
options?: {
force?: boolean;
onCommit?: (data: Record<string, any>) => void;
onCancel?: () => void;
}
): void;
}
namespace State {
function init(state: Record<string, any>): void;
function update(
state: Record<string, any>,
init?: Record<string, any>
): void;
}
}