-
Notifications
You must be signed in to change notification settings - Fork 312
/
seneca.d.ts
60 lines (60 loc) · 1.56 KB
/
seneca.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
import Nid from 'nid';
import { Patrun, Gex } from 'patrun';
import { Gubu } from 'gubu';
declare function init(seneca_options?: any, more_options?: any): any;
declare namespace init {
var Seneca: (this: any) => void;
var loghandler: any;
var use: () => any;
var test: () => any;
var quiet: () => any;
var util: {
Eraro: any;
Jsonic: any;
Nid: typeof Nid;
Patrun: typeof Patrun;
Gex: typeof Gex;
Gubu: Gubu;
pins: any;
clean: any;
pattern: any;
print: any;
error: any;
deep: any;
deepextend: any;
parsepattern: any;
pincanon: any;
router: () => any;
resolve_option: any;
flatten: any;
};
var valid: Gubu;
var test$: {
intern: {
util: {
Eraro: any;
Jsonic: any;
Nid: typeof Nid;
Patrun: typeof Patrun;
Gex: typeof Gex;
Gubu: Gubu;
pins: any;
clean: any;
pattern: any;
print: any;
error: any;
deep: any;
deepextend: any;
parsepattern: any;
pincanon: any;
router: () => any;
resolve_option: any;
flatten: any;
};
};
};
}
type Instance = ReturnType<typeof make_seneca> & Record<string, any>;
export type { Instance };
export default init;
declare function make_seneca(initial_opts?: any): any;