forked from X3I/waves-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.d.ts
More file actions
55 lines (44 loc) · 1.07 KB
/
interfaces.d.ts
File metadata and controls
55 lines (44 loc) · 1.07 KB
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
export type TBuffer = Uint8Array | number[];
export type TLogLevel = 'none' | 'error' | 'warning' | 'info';
export interface IHash<T> {
[key: string]: T;
}
export interface IKeyPair {
readonly privateKey: string;
readonly publicKey: string;
}
export interface IKeyPairBytes {
readonly privateKey: Uint8Array;
readonly publicKey: Uint8Array;
}
export interface IWavesBasicConfig {
minimumSeedLength: number;
requestOffset: number;
requestLimit: number;
logLevel: TLogLevel;
timeDiff: number;
}
export interface IWavesConfig extends IWavesBasicConfig {
networkByte: number;
nodeAddress: string;
matcherAddress: string;
assetFactory?: Function;
}
// Missing interfaces
declare global {
interface Window {
msCrypto?: any;
Response?: any;
Promise: PromiseConstructor;
}
interface ErrorConstructor {
captureStackTrace(thisArg: any, func: any): void;
}
}
// Replacement for --allowJs
declare module '*.js' {
const content: {
[key: string]: any;
};
export = content;
}