-
Notifications
You must be signed in to change notification settings - Fork 0
/
fibjs.d.ts
11684 lines (10471 loc) · 333 KB
/
fibjs.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* https://github.com/fibjs/fibjs
* fibjs typescript definition
*
* fibjs.d.ts的写法参考了node.d.ts
* thinks https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a4a912a0cd1849fa7df0e5d909c8625fba04e49d/node/index.d.ts
*
* @CreateTime: Jun 10, 2018 11:28 PM
* @Author: 544430497@qq.com
* @Contact: 544430497@qq.com
* @Last Modified By: 544430497@qq.com
* @Last Modified Time: Jun 10, 2018 11:52 PM
* @Description: Modify Here, Please
*/
//#region===================================================common======================================================
interface IterableIterator<T> { }
// compat for TypeScript 1.8
// if you use with --target es3 or --target es5 and use below definitions,
// use the lib.es6.d.ts that is bundled with TypeScript 1.8.
interface MapConstructor { }
interface WeakMapConstructor { }
interface SetConstructor { }
interface WeakSetConstructor { }
// Forward-declare needed types from lib.es2015.d.ts (in case users are using `--lib es5`)
interface Iterable<T> { }
interface Iterator<T> {
next(value?: any): IteratorResult<T>;
}
interface IteratorResult<T> { }
interface SymbolConstructor {
readonly iterator: symbol;
}
declare var Symbol: SymbolConstructor;
interface NodeRequireFunction {
(id: string): any;
}
declare var require: NodeRequireFunction;
declare var process: FibJS.Process;
//type placeholder
type Integer = number;
type Value = any;
type Long = number;
//#endregion
//#region===================================================assert========================================================
declare module "assert" {
/**
*测试数值为真,为假则断言失败
*
* @export
* @param {FibJS.Object} [actual]
* @param {string} [msg]
*/
export function Function(actual?: Value, msg?: string);
/**
*测试数值为真,为假则断言失败
*
* @export
* @param {Value} [actual]
* @param {string} [msg]
*/
export function ok(actual?: Value, msg?: string);
/**
*测试数值为假,为真则断言失败
*
* @export
* @param {Value} [actual]
* @param {string} [msg]
*/
export function notOk(actual?: Value, msg?: string);
/**
*测试数值等于预期值,不相等则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function equals(actual?: Value, expected?: Value, msg?: string);
/**
*测试数值等于预期值,不相等则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function notEqual(actual?: Value, expected?: Value, msg?: string);
/**
* 测试数值严格等于预期值,不相等则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function strictEqual(actual?: Value, expected?: Value, msg?: string);
/**
*测试数值不严格等于预期值,相等则断言失
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function notStrictEqual(actual?: Value, expected?: Value, msg?: string);
/**
*测试数值深度等于预期值,不相等则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function deepEqual(actual?: Value, expected?: Value, msg?: string);
/**
*测试数值不深度等于预期值,相等则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function notDeepEqual(actual?: Value, expected?: Value, msg?: string);
/**
*测试数值近似等于预期值,否则断言失败
*
* @export
* @param {Value} actual 要测试的数值
* @param {Value} expected 预期的数值
* @param {Value} delta 近似的小数精度
* @param {string} [msg] 断言失败时的提示信息
*/
export function closeTo(actual: Value, expected: Value, delta: Value, msg?: string);
/**
*测试数值不近似等于预期值,否则断言失败
*
* @export
* @param {Value} actual 要测试的数值
* @param {Value} expected 预期的数值
* @param {Value} delta 近似的小数精度
* @param {string} [msg] 断言失败时的提示信息
*/
export function notCloseTo(actual: Value, expected: Value, delta: Value, msg?: string);
/**
* 测试数值小于预期值,大于或等于则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function lessThan(actual?: Value, expected?: Value, msg?: string);
/**
* 测试数值不小于预期值,小于则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function notLessThan(actual?: Value, expected?: Value, msg?: string);
/**
* 测试数值大于预期值,小于或等于则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function greaterThan(actual?: Value, expected?: Value, msg?: string);
/**
* 测试数值不大于预期值,大于则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {Value} [expected] 预期的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function notGreaterThan(actual?: Value, expected?: Value, msg?: string);
/**
* 测试变量存在,为假则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function exist(actual?: Value, msg?: string);
/**
* 测试变量不存在,为真则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function notExist(actual?: Value, msg?: string);
/**
*测试数值为布尔值真,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isTrue(actual?: Value, msg?: string);
/**
*测试数值不为布尔值真,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotTrue(actual?: Value, msg?: string);
/**
*测试数值不为布尔值真,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isFalse(actual?: Value, msg?: string);
/**
*测试数值不为布尔值假,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotFalse(actual?: Value, msg?: string);
/**
*测试数值为 Null,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNull(actual?: Value, msg?: string);
/**
*测试数值不为 Null,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotNull(actual?: Value, msg?: string);
/**
*测试数值为 undefined,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isUndefined(actual?: Value, msg?: string);
/**
*测试数值不为 undefined,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isDefined(actual?: Value, msg?: string);
/**
*测试数值不为 undefined,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isFunction(actual?: Value, msg?: string);
/**
*测试数值不为函数,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotFunction(actual?: Value, msg?: string);
/**
*测试数值为对象,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isObject(actual?: Value, msg?: string);
/**
*测试数值不为对象,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotObject(actual?: Value, msg?: string);
/**
*测试数值为数组,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isArray(actual?: Value, msg?: string);
/**
*测试数值不为数组,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotArray(actual?: Value, msg?: string);
/**
*测试数值为字符串,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isString(actual?: Value, msg?: string);
/**
*测试数值不为字符串,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotString(actual?: Value, msg?: string);
/**
*测试数值为数字,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNumber(actual?: Value, msg?: string);
/**
*测试数值不为数字,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotNumber(actual?: Value, msg?: string);
/**
*测试数值为布尔,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isBoolean(actual?: Value, msg?: string);
/**
*测试数值为布尔,否则断言失败
*
* @export
* @param {Value} [actual] 要测试的数值
* @param {string} [msg] 断言失败时的提示信息
*/
export function isNotBoolean(actual?: Value, msg?: string);
/**
*测试数值为给定类型,否则断言失败
*
* @export
* @param {Value} actual 要测试的数值
* @param {string} type 指定的类型
* @param {?string} msg 断言失败时的提示信息
*/
export function typeOf(actual: Value, type: string, msg: string);
/**
*测试数值不为给定类型,否则断言失败
*
* @export
* @param {Value} actual 要测试的数值
* @param {string} type 指定的类型
* @param {?string} msg 断言失败时的提示信息
*/
export function notTypeOf(actual: Value, type: string, msg: string);
/**
*测试对象中包含指定属性,否则断言失败
*
* @export
* @param {Value} value 要测试的对象
* @param {Value} prop 要测试的属性
* @param {string} [msg] 断言失败时的提示信息
*/
export function property(value: Value, prop: Value, msg?: string);
/**
*测试对象中不包含指定属性,否则断言失败
*
* @export
* @param {Value} value 要测试的对象
* @param {Value} prop 要测试的属性
* @param {string} [msg] 断言失败时的提示信息
*/
export function notProperty(value: Value, prop: Value, msg?: string);
/**
*深度测试对象中包含指定属性,否则断言失败
*
* @export
* @param {Value} value 要测试的对象
* @param {Value} prop 要测试的属性
* @param {string} [msg] 断言失败时的提示信息
*/
export function deepProperty(value: Value, prop: Value, msg?: string);
/**
*深度测试对象中不包含指定属性,否则断言失败
*
* @export
* @param {Value} value 要测试的对象
* @param {Value} prop 要测试的属性
* @param {string} [msg] 断言失败时的提示信息
*/
export function notDeepProperty(value: Value, prop: Value, msg?: string);
/**
*测试对象中指定属性的值为给定值,否则断言失败
*
* @export
* @param {Value} obj 要测试的对象
* @param {Value} prop 要测试的属性
* @param {Value} value 给定的值
* @param {string} [msg] 断言失败时的提示信息
*/
export function propertyVal(obj: Value, prop: Value, value: Value, msg?: string);
/**
*测试对象中指定属性的值不为给定值,否则断言失败
*
* @export
* @param {Value} obj 要测试的对象
* @param {Value} prop 要测试的属性
* @param {Value} value 给定的值
* @param {string} [msg] 断言失败时的提示信息
*/
export function propertyNotVal(obj: Value, prop: Value, value: Value, msg?: string);
/**
*深度测试对象中指定属性的值为给定值,否则断言失败
*
* @export
* @param {Value} obj 要测试的对象
* @param {Value} prop 要测试的属性,以“.”分割
* @param {Value} value 给定的值
* @param {string} [msg] 断言失败时的提示信息
*/
export function deepPropertyVal(obj: Value, prop: Value, value: Value, msg?: string);
/**
*深度测试对象中指定属性的值不为给定值,否则断言失败
*
* @export
* @param {Value} obj 要测试的对象
* @param {Value} prop 要测试的属性,以“.”分割
* @param {Value} value 给定的值
* @param {string} [msg] 断言失败时的提示信息
*/
export function deepPropertyNotVal(obj: Value, prop: Value, value: Value, msg?: string);
/**
*测试给定的代码会抛出错误,未抛出则断言失败
*
* @export
* @param {Function} block 指定测试的代码,以函数形式给出
* @param {string} [msg] 断言失败时的提示信息
*/
export function throws(block: Function, msg?: string);
/**
*测试给定的代码不会抛出错误,抛出则断言失败
*
* @export
* @param {Function} block 指定测试的代码,以函数形式给出
* @param {string} [msg] 断言失败时的提示信息
*/
export function doesNotThrow(block: Function, msg?: string);
/**
*如果参数为真,则抛出
*
* @export
* @param {Value} [obj]
*/
export function ifError(obj?: Value);
}
//#endregion
//#region===================================================test=========================================================
declare module "test" {
import * as asserts from "assert";
export var assert: typeof asserts;
/**
*定义一个测试模块,可嵌套定义
*
* @export
* @param {string} name 定义模块名称
* @param {Function} block 模块初始化代码
*/
export function describe(name: string, block: Function);
/**
*暂停测试的模块定义,test.setup 后可使用 describe.skip 调用
*
* @export
* @param {string} name 定义模块名称
* @param {Function} block 模块初始化代码
*/
export function xdescribe(name: string, block: Function);
/**
*独立测试的模块定义,test.setup 后可使用 describe.only 调用
*
* @export
* @param {string} name 定义模块名称
* @param {Function} block 模块初始化代码
*/
export function odescribe(name: string, block: Function);
/**
*定义一个测试项目
*
* @export
* @param {string} name 定义项目名称
* @param {Function} block 测试内容
*/
export var it: {
(name: string, block: Function): void;
/**
*test.setup 后可使用 it.skip 调用
*
* @param {string} name
* @param {Function} block
*/
skip(name: string, block: Function): void;
/**
*test.setup 后可使用 it.only 调用
*
* @param {string} name
* @param {Function} block
*/
only(name: string, block: Function): void;
}
/**
*暂停测试的项目定义,test.setup 后可使用 it.skip 调用
*
* @export
* @param {string} name 定义项目名称
* @param {Function} block 测试内容
*/
export function xit(name: string, block: Function);
/**
*独立测试的项目定义,test.setup 后可使用 it.only 调用
*
* @export
* @param {string} name 定义项目名称
* @param {Function} block 测试内容
*/
export function oit(name: string, block: Function);
/**
*定义当前测试模块进入事件
*
* @export
* @param {string} name 定义项目名称
* @param {Function} block 测试内容
*/
export function before(func: Function);
/**
*定义当前测试模块退出事件
*
* @export
* @param {string} name 定义项目名称
* @param {Function} block 测试内容
*/
export function after(func: Function);
/**
*定义当前测试模块测试项目进入事件
*
* @export
* @param {Function} func
*/
export function beforeEach(func: Function);
/**
*定义当前测试模块测试项目退出事件
*
* @export
* @param {Function} func
*/
export function afterEach(func: Function);
/**
*开始执行定义的测试模块
*
* @export
* @param {number} log 指定进行测试时的日志输出级别,ERROR 时,项目报错信息集中在报告后显示,低于 ERROR 时,输出信息随时显示,高于 ERROR 时,只显示报告
*/
export function run(log: number);
/**
*初始化当前脚本的测试环境,将 test 模块方法复制为当前脚本全局变量
*
* @export
*/
export function setup();
/**
* 设置和查询慢速测试警告阀值,以 ms 为单位,缺省为 75
*/
export var slow: number;
}
//#endregion
//#region ===================================================global========================================================
type TypedArray = Float32Array | Float64Array | Int8Array | Int16Array | Int32Array | Uint8ClampedArray | Uint8Array | Uint16Array | Uint32Array;
interface Codec {
"hex", "base64", "utf8"
}
declare namespace FibJS {
export interface Object {
/**
*返回对象的字符串表示,一般返回 "[Native Object]",对象可以根据自己的特性重新实现
*
* @returns null
* @memberof Object
*/
toString(): string;
/**
*返回对象的 JSON 格式表示,一般返回对象定义的可读属性集合
*
* @param {string} [key]
* @returns {Object}
* @memberof Object
*/
toJSON(key?: string): Object;
}
export interface Global {
Array: typeof Array;
ArrayBuffer: typeof ArrayBuffer;
Boolean: typeof Boolean;
Buffer: typeof Buffer;
DataView: typeof DataView;
Date: typeof Date;
Error: typeof Error;
EvalError: typeof EvalError;
Float32Array: typeof Float32Array;
Float64Array: typeof Float64Array;
Function: typeof Function;
GLOBAL: Global;
Infinity: typeof Infinity;
Int16Array: typeof Int16Array;
Int32Array: typeof Int32Array;
Int8Array: typeof Int8Array;
Intl: typeof Intl;
JSON: typeof JSON;
Map: MapConstructor;
Math: typeof Math;
NaN: typeof NaN;
Number: typeof Number;
Object: typeof Object;
Promise: Function;
RangeError: typeof RangeError;
ReferenceError: typeof ReferenceError;
RegExp: typeof RegExp;
Set: SetConstructor;
String: typeof String;
Symbol: Function;
SyntaxError: typeof SyntaxError;
TypeError: typeof TypeError;
URIError: typeof URIError;
Uint16Array: typeof Uint16Array;
Uint32Array: typeof Uint32Array;
Uint8Array: typeof Uint8Array;
Uint8ClampedArray: Function;
WeakMap: WeakMapConstructor;
WeakSet: WeakSetConstructor;
clearImmediate: (immediateId: any) => void;
clearInterval: (intervalId: FibJS.Timer) => void;
clearTimeout: (timeoutId: FibJS.Timer) => void;
console: typeof console;
decodeURI: typeof decodeURI;
decodeURIComponent: typeof decodeURIComponent;
encodeURI: typeof encodeURI;
encodeURIComponent: typeof encodeURIComponent;
escape: (str: string) => string;
eval: typeof eval;
global: Global;
isFinite: typeof isFinite;
isNaN: typeof isNaN;
parseFloat: typeof parseFloat;
parseInt: typeof parseInt;
process: Process;
setImmediate: (callback: (...args: any[]) => void, ...args: any[]) => any;
setInterval: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => FibJS.Timer;
setTimeout: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => FibJS.Timer;
undefined: typeof undefined;
unescape: (str: string) => string;
argv: Array<any>;
gc: () => void;
v8debug?: any;
}
//SIGINT 在终端运行时,可以被所有平台支持,通常可以通过 CTRL+C 触发。
//SIGTERM 当进程被 kill 时触发此信号。Windows 下不支持。
type Signals =
"SIGINT" | "SIGTERM";
type BeforeExitListener = (code: number) => void;
type ExitListener = (code: number) => void;
type SignalsListener = (signal: Signals) => void;
export interface Process extends EventEmitter {
/**
*返回当前进程的命令行参数
*
* @type {ReadonlyArray<string>}
* @memberof Process
*/
argv: ReadonlyArray<string>;
/**
*返回当前进程的特殊命令行参数,这些参数被 fibjs 用于设置运行环境
*
* @type {ReadonlyArray<string>}
* @memberof Process
*/
execArgv: ReadonlyArray<string>;
/**
*返回 fibjs 版本字符串
*
* @type {Readonly<string>}
* @memberof Process
*/
version:Readonly<string>;
/**
*返回 fibjs 及组件的版本信息
*
* @type {Readonly<Object>}
* @memberof Process
*/
versions:Readonly<Object>;
/**
*查询当前运行执行文件完整路径
*
* @type {string}
* @memberof Process
*/
execPath: string;
/**
*查询当前进程的环境变量
*
* @type {string}
* @memberof Process
*/
env:string;
/**
* 查询当前 cpu 环境
*
* @type {keyof 'amd64'}
* @memberof Process
*/
arch:keyof { 'amd64', 'arm', 'arm64', 'ia32'};
platform:keyof { 'darwin', 'freebsd', 'linux',"win32"};
stdin:any;
stdout:any;
stderr:any;
exitCode:Integer;
addListener(event: "beforeExit", listener: BeforeExitListener): this;
addListener(event: "exit", listener: BeforeExitListener): this;
addListener(event: Signals, listener: SignalsListener): this;
/**
*
* @brief 改变当前的 umask,Windows 不支持此方法
* @param mask 指定新的掩码
* @return 返回之前的 mask
*
*
*
*/
umask(mask: number): number;
/**
*
* @brief 改变当前的 umask,Windows 不支持此方法
* @param mask 指定新的掩码, 字符串类型八进制(e.g: "0664")
* @return 返回之前的 mask
*
*
*
*/
umask(mask: string): number;
/**
*
* @brief 返回当前的 umask,Windows 不支持此方法
* @return 返回当前的 mask 值
*
*
*
*/
umask(): number;
/**
*
* @brief 返回系统高精度时间,此时间与当前时间无关,仅用于高精度计时
* @param diff 用于比较的初始时间
* @return 返回计时时间,格式为 [seconds, nanoseconds]
*
*
*
*/
hrtime(diff?: any[]/** = v8::Array::New(isolate)*/): any[];
/**
*
* @brief 退出当前进程,并返回 exitCode 作为进程结果
*
*
*/
exit(): void;
/**
*
* @brief 退出当前进程,并返回结果
* @param code 返回进程结果
*
*
*
*/
exit(code: number): void;
/**
*
* @brief 返回操作系统当前工作路径
* @return 返回当前系统路径
*
*
*
*/
cwd(): string;
/**
*
* @brief 修改操作系统当前工作路径
* @param directory 指定设定的新路径
*
*
*
*/
chdir(directory: string): void;
/**
*
* @brief 查询运行环境运行时间,以秒为单位
* @return 返回表示时间的数值
*
*
*
*/
uptime(): number;
/**
*
* @brief 查询当前进程内存使用报告
*
* 内存报告生成类似以下结果:
* ```JavaScript
* {
* "rss": 8622080,
* "heapTotal": 4083456,
* "heapUsed": 1621800
* }
* ```
* 其中:
* - rss 返回进程当前占用物理内存大小
* - heapTotal 返回 v8 引擎堆内存大小
* - heapUsed 返回 v8 引擎正在使用堆内存大小
* @return 返回包含内存报告
*
*
*
*/
memoryUsage(): Object;
/**
*
* @brief 启动一个纤程
* @param func 制定纤程执行的函数
* @param args 可变参数序列,此序列会在纤程内传递给函数
*
*
*
*/
nextTick(func: Function, ...args: any[]): void;
/**
*
* @brief 运行指定的命令行,接管进程输入输出流,并返回进程对象
*
* opts 支持的选项如下:
* ```JavaScript
* {
* "timeout": 100, // 单位为 ms
* "envs": [] // 进程环境变量
* }
* ```
* @param command 指定运行的命令行
* @param args 指定运行的参数列表
* @param opts 指定运行的选项
* @return 返回包含运行结果的进程对象
*
*
*
*/
open(command: string, args: any[], opts?: Object/** = v8::Object::New(isolate)*/): SubProcess;
/**
*
* @brief 运行指定的命令行,接管进程输入输出流,并返回进程对象
*
* opts 支持的选项如下:
* ```JavaScript
* {
* "timeout": 100, // 单位为 ms
* "envs": [] // 进程环境变量
* }
* ```
* @param command 指定运行的命令行
* @param opts 指定运行的选项
* @return 返回包含运行结果的进程对象
*
*
*
*/
open(command: string, opts?: Object/** = v8::Object::New(isolate)*/): SubProcess;
/**
*
* @brief 运行指定的命令行,并返回进程对象
*
* opts 支持的选项如下: