type-tls 2.4.5 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +128 -0
- package/dist/type-tls.d.ts +142 -0
- package/dist/type-tls.iife.js +1 -1
- package/dist/type-tls.mjs +124 -90
- package/dist/type-tls.umd.js +1 -1
- package/doc/api/type-tls.axis.getcrossaxiss.md +32 -0
- package/doc/api/type-tls.axis.md +22 -0
- package/doc/api/type-tls.axis.toindex.md +25 -0
- package/doc/api/type-tls.axis.tokey.md +25 -0
- package/doc/api/type-tls.axis4.getcrossaxiss.md +32 -0
- package/doc/api/type-tls.axis4.md +22 -0
- package/doc/api/type-tls.axis4.toindex.md +25 -0
- package/doc/api/type-tls.axis4.tokey.md +25 -0
- package/doc/api/type-tls.axis4name.md +13 -0
- package/doc/api/type-tls.axisname.md +13 -0
- package/doc/api/type-tls.ivector.md +15 -0
- package/doc/api/type-tls.ivector2.md +21 -0
- package/doc/api/type-tls.ivector2.x.md +11 -0
- package/doc/api/type-tls.ivector2.y.md +11 -0
- package/doc/api/type-tls.ivector3.md +21 -0
- package/doc/api/type-tls.ivector3.z.md +11 -0
- package/doc/api/type-tls.ivector4.md +21 -0
- package/doc/api/type-tls.ivector4.w.md +11 -0
- package/doc/api/type-tls.md +24 -0
- package/doc/api/type-tls.pickcontainsvalue.md +17 -0
- package/doc/api/type-tls.picknoncontainsvalue.md +17 -0
- package/doc/api/type-tls.picknonvalue.md +17 -0
- package/doc/api/type-tls.pickvalue.md +17 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -202,6 +202,30 @@ export declare type KeyOfContainsValue<Target, Value> = {
|
|
|
202
202
|
export declare type KeyOfNonContainsValue<Target, Value> = {
|
|
203
203
|
[K in keyof Target]: Value extends Target[K] ? never : K;
|
|
204
204
|
}[keyof Target];
|
|
205
|
+
/**
|
|
206
|
+
* 从 T 中挑选出那些成员值为 V 的类型的成员
|
|
207
|
+
*/
|
|
208
|
+
export declare type PickValue<T, V extends T[keyof T]> = {
|
|
209
|
+
[P in KeyOfValue<T, V>]: T[P];
|
|
210
|
+
};
|
|
211
|
+
/**
|
|
212
|
+
* 从 T 中挑选出那些成员值不是 V 的类型的成员
|
|
213
|
+
*/
|
|
214
|
+
export declare type PickNonValue<T, V extends T[keyof T]> = {
|
|
215
|
+
[P in KeyOfNonValue<T, V>]: T[P];
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* 从 T 中挑选出那些成员值的类型包含 V 类型的成员
|
|
219
|
+
*/
|
|
220
|
+
export declare type PickContainsValue<T, V extends T[keyof T]> = {
|
|
221
|
+
[P in KeyOfContainsValue<T, V>]: T[P];
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* 从 T 中挑选出那些成员值的类型不包含 V 类型的成员
|
|
225
|
+
*/
|
|
226
|
+
export declare type PickNonContainsValue<T, V extends T[keyof T]> = {
|
|
227
|
+
[P in KeyOfNonContainsValue<T, V>]: T[P];
|
|
228
|
+
};
|
|
205
229
|
/**
|
|
206
230
|
* 可将源类型 SourType 中的 类型 MatchType 替换为 新的类型 NewType
|
|
207
231
|
*/
|
|
@@ -497,5 +521,109 @@ export declare type WaitAsyncableCallback<Result, Return> = (result: ResolveData
|
|
|
497
521
|
* @returns
|
|
498
522
|
*/
|
|
499
523
|
export declare function waitAsyncable<Result, Return>(asyncable: Result, callback: WaitAsyncableCallback<Result, Return>): WaitAsyncableReturn<Result, Return>;
|
|
524
|
+
/**
|
|
525
|
+
* 二维向量
|
|
526
|
+
*/
|
|
527
|
+
export interface IVector2 {
|
|
528
|
+
x: number;
|
|
529
|
+
y: number;
|
|
530
|
+
}
|
|
531
|
+
/**
|
|
532
|
+
* 三维向量
|
|
533
|
+
*/
|
|
534
|
+
export interface IVector3 extends IVector2 {
|
|
535
|
+
z: number;
|
|
536
|
+
}
|
|
537
|
+
/**
|
|
538
|
+
* 四维向量
|
|
539
|
+
*/
|
|
540
|
+
export interface IVector4 extends IVector3 {
|
|
541
|
+
w: number;
|
|
542
|
+
}
|
|
543
|
+
/**
|
|
544
|
+
* 向量
|
|
545
|
+
*/
|
|
546
|
+
export declare type IVector = IVector2 | IVector3 | IVector4;
|
|
547
|
+
/**
|
|
548
|
+
* 轴名
|
|
549
|
+
*/
|
|
550
|
+
export declare type AxisName = "x" | "y" | "z";
|
|
551
|
+
/**
|
|
552
|
+
* 轴
|
|
553
|
+
*/
|
|
554
|
+
export declare enum Axis {
|
|
555
|
+
x = 0,
|
|
556
|
+
y = 1,
|
|
557
|
+
z = 2
|
|
558
|
+
}
|
|
559
|
+
/**
|
|
560
|
+
* 轴的方法
|
|
561
|
+
*/
|
|
562
|
+
export declare namespace Axis {
|
|
563
|
+
/**
|
|
564
|
+
* 将轴索引转为轴名字
|
|
565
|
+
* @param index - 索引
|
|
566
|
+
* @returns
|
|
567
|
+
*/
|
|
568
|
+
function toKey(index: Axis): AxisName;
|
|
569
|
+
/**
|
|
570
|
+
* 将轴名字转为轴索引
|
|
571
|
+
* @param name
|
|
572
|
+
* @returns
|
|
573
|
+
*/
|
|
574
|
+
function toIndex(name: AxisName): Axis;
|
|
575
|
+
/**
|
|
576
|
+
* 获取剩余的另外两个轴
|
|
577
|
+
* @remarks
|
|
578
|
+
* 获取除 axis 之外的另外两个轴,且这两轴的顺序符合叉乘得 axis 轴的顺序
|
|
579
|
+
* @param axis
|
|
580
|
+
* @returns
|
|
581
|
+
*/
|
|
582
|
+
function getCrossAxiss(axis: Axis): [
|
|
583
|
+
Axis,
|
|
584
|
+
Axis
|
|
585
|
+
];
|
|
586
|
+
}
|
|
587
|
+
/**
|
|
588
|
+
* 四维轴的名字
|
|
589
|
+
*/
|
|
590
|
+
export declare type Axis4Name = "x" | "y" | "z";
|
|
591
|
+
/**
|
|
592
|
+
* 四维轴
|
|
593
|
+
*/
|
|
594
|
+
export declare enum Axis4 {
|
|
595
|
+
x = 0,
|
|
596
|
+
y = 1,
|
|
597
|
+
z = 2,
|
|
598
|
+
w = 3
|
|
599
|
+
}
|
|
600
|
+
/**
|
|
601
|
+
* 四维轴的方法
|
|
602
|
+
*/
|
|
603
|
+
export declare namespace Axis4 {
|
|
604
|
+
/**
|
|
605
|
+
* 将轴索引转为轴名字
|
|
606
|
+
* @param index - 索引
|
|
607
|
+
* @returns
|
|
608
|
+
*/
|
|
609
|
+
function toKey(index: Axis4): Axis4Name;
|
|
610
|
+
/**
|
|
611
|
+
* 将轴名字转为轴索引
|
|
612
|
+
* @param name
|
|
613
|
+
* @returns
|
|
614
|
+
*/
|
|
615
|
+
function toIndex(name: Axis4Name): Axis4;
|
|
616
|
+
/**
|
|
617
|
+
* 获取剩余的另外两个轴
|
|
618
|
+
* @remarks
|
|
619
|
+
* 获取除 axis 之外的另外两个轴,且这两轴的顺序符合叉乘得 axis 轴的顺序
|
|
620
|
+
* @param axis
|
|
621
|
+
* @returns
|
|
622
|
+
*/
|
|
623
|
+
function getCrossAxiss(axis: Axis4): [
|
|
624
|
+
Axis4,
|
|
625
|
+
Axis4
|
|
626
|
+
];
|
|
627
|
+
}
|
|
500
628
|
|
|
501
629
|
export {};
|
package/dist/type-tls.d.ts
CHANGED
|
@@ -17,6 +17,93 @@ export declare type AnyFunction = (...args: any) => any;
|
|
|
17
17
|
*/
|
|
18
18
|
export declare type ArrayItemType<Arr> = Arr extends (infer Item)[] ? Item : never;
|
|
19
19
|
|
|
20
|
+
/**
|
|
21
|
+
* 轴
|
|
22
|
+
*/
|
|
23
|
+
export declare enum Axis {
|
|
24
|
+
x = 0,
|
|
25
|
+
y = 1,
|
|
26
|
+
z = 2
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* 轴的方法
|
|
31
|
+
*/
|
|
32
|
+
export declare namespace Axis {
|
|
33
|
+
/**
|
|
34
|
+
* 将轴索引转为轴名字
|
|
35
|
+
* @param index - 索引
|
|
36
|
+
* @returns
|
|
37
|
+
*/
|
|
38
|
+
export function toKey(index: Axis): AxisName;
|
|
39
|
+
/**
|
|
40
|
+
* 将轴名字转为轴索引
|
|
41
|
+
* @param name
|
|
42
|
+
* @returns
|
|
43
|
+
*/
|
|
44
|
+
export function toIndex(name: AxisName): Axis;
|
|
45
|
+
/**
|
|
46
|
+
* 获取剩余的另外两个轴
|
|
47
|
+
* @remarks
|
|
48
|
+
* 获取除 axis 之外的另外两个轴,且这两轴的顺序符合叉乘得 axis 轴的顺序
|
|
49
|
+
* @param axis
|
|
50
|
+
* @returns
|
|
51
|
+
*/
|
|
52
|
+
export function getCrossAxiss(axis: Axis): [
|
|
53
|
+
Axis,
|
|
54
|
+
Axis
|
|
55
|
+
];
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* 四维轴
|
|
60
|
+
*/
|
|
61
|
+
export declare enum Axis4 {
|
|
62
|
+
x = 0,
|
|
63
|
+
y = 1,
|
|
64
|
+
z = 2,
|
|
65
|
+
w = 3
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* 四维轴的方法
|
|
70
|
+
*/
|
|
71
|
+
export declare namespace Axis4 {
|
|
72
|
+
/**
|
|
73
|
+
* 将轴索引转为轴名字
|
|
74
|
+
* @param index - 索引
|
|
75
|
+
* @returns
|
|
76
|
+
*/
|
|
77
|
+
export function toKey(index: Axis4): Axis4Name;
|
|
78
|
+
/**
|
|
79
|
+
* 将轴名字转为轴索引
|
|
80
|
+
* @param name
|
|
81
|
+
* @returns
|
|
82
|
+
*/
|
|
83
|
+
export function toIndex(name: Axis4Name): Axis4;
|
|
84
|
+
/**
|
|
85
|
+
* 获取剩余的另外两个轴
|
|
86
|
+
* @remarks
|
|
87
|
+
* 获取除 axis 之外的另外两个轴,且这两轴的顺序符合叉乘得 axis 轴的顺序
|
|
88
|
+
* @param axis
|
|
89
|
+
* @returns
|
|
90
|
+
*/
|
|
91
|
+
export function getCrossAxiss(axis: Axis4): [
|
|
92
|
+
Axis4,
|
|
93
|
+
Axis4
|
|
94
|
+
];
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* 四维轴的名字
|
|
99
|
+
*/
|
|
100
|
+
export declare type Axis4Name = "x" | "y" | "z";
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* 轴名
|
|
104
|
+
*/
|
|
105
|
+
export declare type AxisName = "x" | "y" | "z";
|
|
106
|
+
|
|
20
107
|
/**
|
|
21
108
|
* 类的类型、构造函数的类型
|
|
22
109
|
*
|
|
@@ -326,6 +413,33 @@ export declare function isIterator(target: any): boolean;
|
|
|
326
413
|
*/
|
|
327
414
|
export declare function isObject(target: any): boolean;
|
|
328
415
|
|
|
416
|
+
/**
|
|
417
|
+
* 向量
|
|
418
|
+
*/
|
|
419
|
+
export declare type IVector = IVector2 | IVector3 | IVector4;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* 二维向量
|
|
423
|
+
*/
|
|
424
|
+
export declare interface IVector2 {
|
|
425
|
+
x: number;
|
|
426
|
+
y: number;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* 三维向量
|
|
431
|
+
*/
|
|
432
|
+
export declare interface IVector3 extends IVector2 {
|
|
433
|
+
z: number;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* 四维向量
|
|
438
|
+
*/
|
|
439
|
+
export declare interface IVector4 extends IVector3 {
|
|
440
|
+
w: number;
|
|
441
|
+
}
|
|
442
|
+
|
|
329
443
|
/**
|
|
330
444
|
* 获取值类型包含指定类型的所有 key
|
|
331
445
|
*
|
|
@@ -454,6 +568,34 @@ export declare type Optional<T> = T | null | undefined;
|
|
|
454
568
|
*/
|
|
455
569
|
export declare type OptionalBoolean = Optional<boolean>;
|
|
456
570
|
|
|
571
|
+
/**
|
|
572
|
+
* 从 T 中挑选出那些成员值的类型包含 V 类型的成员
|
|
573
|
+
*/
|
|
574
|
+
export declare type PickContainsValue<T, V extends T[keyof T]> = {
|
|
575
|
+
[P in KeyOfContainsValue<T, V>]: T[P];
|
|
576
|
+
};
|
|
577
|
+
|
|
578
|
+
/**
|
|
579
|
+
* 从 T 中挑选出那些成员值的类型不包含 V 类型的成员
|
|
580
|
+
*/
|
|
581
|
+
export declare type PickNonContainsValue<T, V extends T[keyof T]> = {
|
|
582
|
+
[P in KeyOfNonContainsValue<T, V>]: T[P];
|
|
583
|
+
};
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* 从 T 中挑选出那些成员值不是 V 的类型的成员
|
|
587
|
+
*/
|
|
588
|
+
export declare type PickNonValue<T, V extends T[keyof T]> = {
|
|
589
|
+
[P in KeyOfNonValue<T, V>]: T[P];
|
|
590
|
+
};
|
|
591
|
+
|
|
592
|
+
/**
|
|
593
|
+
* 从 T 中挑选出那些成员值为 V 的类型的成员
|
|
594
|
+
*/
|
|
595
|
+
export declare type PickValue<T, V extends T[keyof T]> = {
|
|
596
|
+
[P in KeyOfValue<T, V>]: T[P];
|
|
597
|
+
};
|
|
598
|
+
|
|
457
599
|
/**
|
|
458
600
|
* 用于定义扩展选项中的私有成员
|
|
459
601
|
*/
|
package/dist/type-tls.iife.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var TypeTls=function(e){var
|
|
1
|
+
var TypeTls=function(e){var d,l,b;"use strict";function g(n){var t=typeof n;return n&&(t==="object"||t==="function")}function a(n){var t=n;return n!=null&&(t=n.constructor,t==null&&(t=typeof n)),t}function s(n){switch(n){case void 0:return"undefined";case null:return"null"}let t=typeof n;switch(t){case"function":return n.name;case"string":return n;default:return t}}function m(n){return globalThis[n]}function F(n){let t=a(n);return s(t)}function T(n){return n==null||g(n)?a(n):typeof n}function O(n){var t=T(n);return s(t)}function w(n){var t=typeof n;return n==null||t!=="object"&&t!=="function"}function E(n){let t=n&&n.length;return Number.isInteger(n.length)&&t>=0}function M(n){return n&&typeof n[Symbol.iterator]=="function"}function I(n){return n&&typeof n.next=="function"}function c(n,...t){for(const r of t){const u=Object.getOwnPropertyDescriptors(r);Object.defineProperties(n,u)}return n}function _(n,t){return t}function v(){return function(t,r){return r}}function h(n,t){return c(n,t),t}function A(n){return function(r){return c(n,r),r}}function $(n,t){return c(n,t),n}function N(n){return function(r){return c(n,r),n}}function S(n,t){return t}function o(n,t){var u;c(n.prototype,t);const r=t._constructor;if(typeof r=="function"){const i=n;((u=i._constructors)!=null?u:i._constructors=[]).push(r)}return t}function z(n){return function(r){return o(n,r),r}}function j(n,t){return o(n,t),n}function G(n){return function(r){return o(n,r),n}}const Z=/^[A-Za-z_$]+[\w$]*$/;function B(n){return Z.test(n)}const C=/(^\s*(async\s+)?\s*(\b[A-Za-z_$]+[\w$]*\b)\s*=>)|(^\s*(async\s+)?\s*\(\s*(\b[A-Za-z_$]+[\w$]*\b)?\s*(,\s*(\b[A-Za-z_$]+[\w$]*\b)\s*)*\)\s*=>)/;function D(n){const t=n.toString();return C.test(t)}const K=(d=globalThis.AsyncFunction)!=null?d:async function(){}.constructor;function P(n){return n instanceof K}const L=(l=globalThis.GeneratorFunction)!=null?l:function*(){}.constructor;function R(n){return n instanceof L}const k=(b=globalThis.AsyncGeneratorFunction)!=null?b:async function*(){}.constructor;function q(n){return n instanceof k}const H=/(^\s*(async\s+)?function\s*(\s|\*)\s*)[A-Za-z_$]+[\w$]*(\s*\()/;function J(n){if(n.name){const t=n.toString();return!H.test(t)}return!0}function Q(n,t){return n instanceof Promise?n.then(r=>t(r,!1,void 0),r=>t(void 0,!0,r)):t(n,!1,void 0)}return e.Axis=(n=>(n[n.x=0]="x",n[n.y=1]="y",n[n.z=2]="z",n))(e.Axis||{}),(n=>{function t(i){return n[i]}n.toKey=t;function r(i){return n[i]}n.toIndex=r;function u(i){const f=(i+1)%3,y=(i+2)%3;return[f,y]}n.getCrossAxiss=u})(e.Axis||(e.Axis={})),e.Axis4=(n=>(n[n.x=0]="x",n[n.y=1]="y",n[n.z=2]="z",n[n.w=3]="w",n))(e.Axis4||{}),(n=>{function t(i){return n[i]}n.toKey=t;function r(i){return n[i]}n.toIndex=r;function u(i){const f=(i+1)%4,y=(i+2)%4;return[f,y]}n.getCrossAxiss=u})(e.Axis4||(e.Axis4={})),e.createDefineMixin=v,e.createExtendTarget=G,e.createMixinTarget=N,e.createTargetExtend=z,e.createTargetMixin=A,e.defineExtend=S,e.defineMixin=_,e.extendTarget=j,e.getExactTypeNameOf=O,e.getExactTypeOf=T,e.getNameOfType=s,e.getTypeByName=m,e.getTypeNameOf=F,e.getTypeOf=a,e.isAnonymousFunction=J,e.isArrayLike=E,e.isArrowFunction=D,e.isAsyncFunction=P,e.isAsyncGeneratorFunction=q,e.isBaseType=w,e.isGeneratorFunction=R,e.isIdentifier=B,e.isIterable=M,e.isIterator=I,e.isObject=g,e.mixin=c,e.mixinTarget=$,e.targetExtend=o,e.targetMixin=h,e.waitAsyncable=Q,Object.defineProperties(e,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}}),e}({});
|
package/dist/type-tls.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
function
|
|
1
|
+
function T(n) {
|
|
2
2
|
var t = typeof n;
|
|
3
3
|
return n && (t === "object" || t === "function");
|
|
4
4
|
}
|
|
5
|
-
function
|
|
5
|
+
function d(n) {
|
|
6
6
|
var t = n;
|
|
7
7
|
return n != null && (t = n.constructor, t == null && (t = typeof n)), t;
|
|
8
8
|
}
|
|
9
|
-
function
|
|
9
|
+
function l(n) {
|
|
10
10
|
switch (n) {
|
|
11
11
|
case void 0:
|
|
12
12
|
return "undefined";
|
|
@@ -23,158 +23,192 @@ function y(n) {
|
|
|
23
23
|
return t;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function _(n) {
|
|
27
27
|
return globalThis[n];
|
|
28
28
|
}
|
|
29
|
-
function
|
|
30
|
-
let t =
|
|
31
|
-
return
|
|
29
|
+
function $(n) {
|
|
30
|
+
let t = d(n);
|
|
31
|
+
return l(t);
|
|
32
32
|
}
|
|
33
|
-
function
|
|
34
|
-
return n == null ||
|
|
33
|
+
function b(n) {
|
|
34
|
+
return n == null || T(n) ? d(n) : typeof n;
|
|
35
35
|
}
|
|
36
|
-
function
|
|
37
|
-
var t =
|
|
38
|
-
return
|
|
36
|
+
function x(n) {
|
|
37
|
+
var t = b(n);
|
|
38
|
+
return l(t);
|
|
39
39
|
}
|
|
40
|
-
function
|
|
40
|
+
function I(n) {
|
|
41
41
|
var t = typeof n;
|
|
42
42
|
return n == null || t !== "object" && t !== "function";
|
|
43
43
|
}
|
|
44
|
-
function
|
|
44
|
+
function z(n) {
|
|
45
45
|
let t = n && n.length;
|
|
46
46
|
return Number.isInteger(n.length) && t >= 0;
|
|
47
47
|
}
|
|
48
|
-
function
|
|
48
|
+
function E(n) {
|
|
49
49
|
return n && typeof n[Symbol.iterator] == "function";
|
|
50
50
|
}
|
|
51
|
-
function
|
|
51
|
+
function S(n) {
|
|
52
52
|
return n && typeof n.next == "function";
|
|
53
53
|
}
|
|
54
|
-
function
|
|
54
|
+
function u(n, ...t) {
|
|
55
55
|
for (const e of t) {
|
|
56
56
|
const o = Object.getOwnPropertyDescriptors(e);
|
|
57
57
|
Object.defineProperties(n, o);
|
|
58
58
|
}
|
|
59
59
|
return n;
|
|
60
60
|
}
|
|
61
|
-
function
|
|
61
|
+
function M(n, t) {
|
|
62
62
|
return t;
|
|
63
63
|
}
|
|
64
|
-
function
|
|
64
|
+
function j() {
|
|
65
65
|
return function(t, e) {
|
|
66
66
|
return e;
|
|
67
67
|
};
|
|
68
68
|
}
|
|
69
|
-
function
|
|
70
|
-
return
|
|
69
|
+
function G(n, t) {
|
|
70
|
+
return u(n, t), t;
|
|
71
71
|
}
|
|
72
|
-
function
|
|
72
|
+
function N(n) {
|
|
73
73
|
return function(e) {
|
|
74
|
-
return
|
|
74
|
+
return u(n, e), e;
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
|
-
function
|
|
78
|
-
return
|
|
77
|
+
function Z(n, t) {
|
|
78
|
+
return u(n, t), n;
|
|
79
79
|
}
|
|
80
|
-
function
|
|
80
|
+
function C(n) {
|
|
81
81
|
return function(e) {
|
|
82
|
-
return
|
|
82
|
+
return u(n, e), n;
|
|
83
83
|
};
|
|
84
84
|
}
|
|
85
|
-
function
|
|
85
|
+
function K(n, t) {
|
|
86
86
|
return t;
|
|
87
87
|
}
|
|
88
|
-
function
|
|
88
|
+
function a(n, t) {
|
|
89
89
|
var o;
|
|
90
|
-
|
|
90
|
+
u(n.prototype, t);
|
|
91
91
|
const e = t._constructor;
|
|
92
92
|
if (typeof e == "function") {
|
|
93
|
-
const
|
|
94
|
-
((o =
|
|
93
|
+
const r = n;
|
|
94
|
+
((o = r._constructors) != null ? o : r._constructors = []).push(e);
|
|
95
95
|
}
|
|
96
96
|
return t;
|
|
97
97
|
}
|
|
98
|
-
function
|
|
98
|
+
function D(n) {
|
|
99
99
|
return function(e) {
|
|
100
|
-
return
|
|
100
|
+
return a(n, e), e;
|
|
101
101
|
};
|
|
102
102
|
}
|
|
103
|
-
function
|
|
104
|
-
return
|
|
103
|
+
function P(n, t) {
|
|
104
|
+
return a(n, t), n;
|
|
105
105
|
}
|
|
106
|
-
function
|
|
106
|
+
function B(n) {
|
|
107
107
|
return function(e) {
|
|
108
|
-
return
|
|
108
|
+
return a(n, e), n;
|
|
109
109
|
};
|
|
110
110
|
}
|
|
111
|
-
const
|
|
112
|
-
function
|
|
113
|
-
return
|
|
111
|
+
const F = /^[A-Za-z_$]+[\w$]*$/;
|
|
112
|
+
function R(n) {
|
|
113
|
+
return F.test(n);
|
|
114
114
|
}
|
|
115
|
-
const
|
|
116
|
-
function
|
|
115
|
+
const w = /(^\s*(async\s+)?\s*(\b[A-Za-z_$]+[\w$]*\b)\s*=>)|(^\s*(async\s+)?\s*\(\s*(\b[A-Za-z_$]+[\w$]*\b)?\s*(,\s*(\b[A-Za-z_$]+[\w$]*\b)\s*)*\)\s*=>)/;
|
|
116
|
+
function L(n) {
|
|
117
117
|
const t = n.toString();
|
|
118
|
-
return
|
|
118
|
+
return w.test(t);
|
|
119
119
|
}
|
|
120
|
-
var
|
|
121
|
-
const
|
|
120
|
+
var y;
|
|
121
|
+
const m = (y = globalThis.AsyncFunction) != null ? y : async function() {
|
|
122
122
|
}.constructor;
|
|
123
|
-
function
|
|
124
|
-
return n instanceof
|
|
123
|
+
function q(n) {
|
|
124
|
+
return n instanceof m;
|
|
125
125
|
}
|
|
126
|
-
var
|
|
127
|
-
const
|
|
126
|
+
var g;
|
|
127
|
+
const h = (g = globalThis.GeneratorFunction) != null ? g : function* () {
|
|
128
128
|
}.constructor;
|
|
129
|
-
function
|
|
130
|
-
return n instanceof
|
|
129
|
+
function H(n) {
|
|
130
|
+
return n instanceof h;
|
|
131
131
|
}
|
|
132
|
-
var
|
|
133
|
-
const
|
|
132
|
+
var p;
|
|
133
|
+
const v = (p = globalThis.AsyncGeneratorFunction) != null ? p : async function* () {
|
|
134
134
|
}.constructor;
|
|
135
|
-
function
|
|
136
|
-
return n instanceof
|
|
135
|
+
function J(n) {
|
|
136
|
+
return n instanceof v;
|
|
137
137
|
}
|
|
138
|
-
const
|
|
139
|
-
function
|
|
138
|
+
const O = /(^\s*(async\s+)?function\s*(\s|\*)\s*)[A-Za-z_$]+[\w$]*(\s*\()/;
|
|
139
|
+
function Q(n) {
|
|
140
140
|
if (n.name) {
|
|
141
141
|
const t = n.toString();
|
|
142
|
-
return !
|
|
142
|
+
return !O.test(t);
|
|
143
143
|
}
|
|
144
144
|
return !0;
|
|
145
145
|
}
|
|
146
|
-
function
|
|
146
|
+
function U(n, t) {
|
|
147
147
|
return n instanceof Promise ? n.then((e) => t(e, !1, void 0), (e) => t(void 0, !0, e)) : t(n, !1, void 0);
|
|
148
148
|
}
|
|
149
|
+
var f = /* @__PURE__ */ ((n) => (n[n.x = 0] = "x", n[n.y = 1] = "y", n[n.z = 2] = "z", n))(f || {});
|
|
150
|
+
((n) => {
|
|
151
|
+
function t(r) {
|
|
152
|
+
return n[r];
|
|
153
|
+
}
|
|
154
|
+
n.toKey = t;
|
|
155
|
+
function e(r) {
|
|
156
|
+
return n[r];
|
|
157
|
+
}
|
|
158
|
+
n.toIndex = e;
|
|
159
|
+
function o(r) {
|
|
160
|
+
const c = (r + 1) % 3, i = (r + 2) % 3;
|
|
161
|
+
return [c, i];
|
|
162
|
+
}
|
|
163
|
+
n.getCrossAxiss = o;
|
|
164
|
+
})(f || (f = {}));
|
|
165
|
+
var s = /* @__PURE__ */ ((n) => (n[n.x = 0] = "x", n[n.y = 1] = "y", n[n.z = 2] = "z", n[n.w = 3] = "w", n))(s || {});
|
|
166
|
+
((n) => {
|
|
167
|
+
function t(r) {
|
|
168
|
+
return n[r];
|
|
169
|
+
}
|
|
170
|
+
n.toKey = t;
|
|
171
|
+
function e(r) {
|
|
172
|
+
return n[r];
|
|
173
|
+
}
|
|
174
|
+
n.toIndex = e;
|
|
175
|
+
function o(r) {
|
|
176
|
+
const c = (r + 1) % 4, i = (r + 2) % 4;
|
|
177
|
+
return [c, i];
|
|
178
|
+
}
|
|
179
|
+
n.getCrossAxiss = o;
|
|
180
|
+
})(s || (s = {}));
|
|
149
181
|
export {
|
|
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
|
-
u as
|
|
178
|
-
|
|
179
|
-
|
|
182
|
+
f as Axis,
|
|
183
|
+
s as Axis4,
|
|
184
|
+
j as createDefineMixin,
|
|
185
|
+
B as createExtendTarget,
|
|
186
|
+
C as createMixinTarget,
|
|
187
|
+
D as createTargetExtend,
|
|
188
|
+
N as createTargetMixin,
|
|
189
|
+
K as defineExtend,
|
|
190
|
+
M as defineMixin,
|
|
191
|
+
P as extendTarget,
|
|
192
|
+
x as getExactTypeNameOf,
|
|
193
|
+
b as getExactTypeOf,
|
|
194
|
+
l as getNameOfType,
|
|
195
|
+
_ as getTypeByName,
|
|
196
|
+
$ as getTypeNameOf,
|
|
197
|
+
d as getTypeOf,
|
|
198
|
+
Q as isAnonymousFunction,
|
|
199
|
+
z as isArrayLike,
|
|
200
|
+
L as isArrowFunction,
|
|
201
|
+
q as isAsyncFunction,
|
|
202
|
+
J as isAsyncGeneratorFunction,
|
|
203
|
+
I as isBaseType,
|
|
204
|
+
H as isGeneratorFunction,
|
|
205
|
+
R as isIdentifier,
|
|
206
|
+
E as isIterable,
|
|
207
|
+
S as isIterator,
|
|
208
|
+
T as isObject,
|
|
209
|
+
u as mixin,
|
|
210
|
+
Z as mixinTarget,
|
|
211
|
+
a as targetExtend,
|
|
212
|
+
G as targetMixin,
|
|
213
|
+
U as waitAsyncable
|
|
180
214
|
};
|
package/dist/type-tls.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(e,
|
|
1
|
+
(function(e,c){typeof exports=="object"&&typeof module<"u"?c(exports):typeof define=="function"&&define.amd?define(["exports"],c):(e=typeof globalThis<"u"?globalThis:e||self,c(e.TypeTls={}))})(this,function(e){var T,l,m;"use strict";function c(n){var t=typeof n;return n&&(t==="object"||t==="function")}function a(n){var t=n;return n!=null&&(t=n.constructor,t==null&&(t=typeof n)),t}function y(n){switch(n){case void 0:return"undefined";case null:return"null"}let t=typeof n;switch(t){case"function":return n.name;case"string":return n;default:return t}}function b(n){return globalThis[n]}function F(n){let t=a(n);return y(t)}function d(n){return n==null||c(n)?a(n):typeof n}function O(n){var t=d(n);return y(t)}function w(n){var t=typeof n;return n==null||t!=="object"&&t!=="function"}function E(n){let t=n&&n.length;return Number.isInteger(n.length)&&t>=0}function h(n){return n&&typeof n[Symbol.iterator]=="function"}function M(n){return n&&typeof n.next=="function"}function o(n,...t){for(const r of t){const u=Object.getOwnPropertyDescriptors(r);Object.defineProperties(n,u)}return n}function I(n,t){return t}function _(){return function(t,r){return r}}function v(n,t){return o(n,t),t}function A(n){return function(r){return o(n,r),r}}function $(n,t){return o(n,t),n}function N(n){return function(r){return o(n,r),n}}function S(n,t){return t}function f(n,t){var u;o(n.prototype,t);const r=t._constructor;if(typeof r=="function"){const i=n;((u=i._constructors)!=null?u:i._constructors=[]).push(r)}return t}function j(n){return function(r){return f(n,r),r}}function z(n,t){return f(n,t),n}function G(n){return function(r){return f(n,r),n}}const p=/^[A-Za-z_$]+[\w$]*$/;function Z(n){return p.test(n)}const B=/(^\s*(async\s+)?\s*(\b[A-Za-z_$]+[\w$]*\b)\s*=>)|(^\s*(async\s+)?\s*\(\s*(\b[A-Za-z_$]+[\w$]*\b)?\s*(,\s*(\b[A-Za-z_$]+[\w$]*\b)\s*)*\)\s*=>)/;function C(n){const t=n.toString();return B.test(t)}const D=(T=globalThis.AsyncFunction)!=null?T:async function(){}.constructor;function K(n){return n instanceof D}const P=(l=globalThis.GeneratorFunction)!=null?l:function*(){}.constructor;function L(n){return n instanceof P}const R=(m=globalThis.AsyncGeneratorFunction)!=null?m:async function*(){}.constructor;function k(n){return n instanceof R}const q=/(^\s*(async\s+)?function\s*(\s|\*)\s*)[A-Za-z_$]+[\w$]*(\s*\()/;function H(n){if(n.name){const t=n.toString();return!q.test(t)}return!0}function J(n,t){return n instanceof Promise?n.then(r=>t(r,!1,void 0),r=>t(void 0,!0,r)):t(n,!1,void 0)}e.Axis=(n=>(n[n.x=0]="x",n[n.y=1]="y",n[n.z=2]="z",n))(e.Axis||{}),(n=>{function t(i){return n[i]}n.toKey=t;function r(i){return n[i]}n.toIndex=r;function u(i){const s=(i+1)%3,g=(i+2)%3;return[s,g]}n.getCrossAxiss=u})(e.Axis||(e.Axis={})),e.Axis4=(n=>(n[n.x=0]="x",n[n.y=1]="y",n[n.z=2]="z",n[n.w=3]="w",n))(e.Axis4||{}),(n=>{function t(i){return n[i]}n.toKey=t;function r(i){return n[i]}n.toIndex=r;function u(i){const s=(i+1)%4,g=(i+2)%4;return[s,g]}n.getCrossAxiss=u})(e.Axis4||(e.Axis4={})),e.createDefineMixin=_,e.createExtendTarget=G,e.createMixinTarget=N,e.createTargetExtend=j,e.createTargetMixin=A,e.defineExtend=S,e.defineMixin=I,e.extendTarget=z,e.getExactTypeNameOf=O,e.getExactTypeOf=d,e.getNameOfType=y,e.getTypeByName=b,e.getTypeNameOf=F,e.getTypeOf=a,e.isAnonymousFunction=H,e.isArrayLike=E,e.isArrowFunction=C,e.isAsyncFunction=K,e.isAsyncGeneratorFunction=k,e.isBaseType=w,e.isGeneratorFunction=L,e.isIdentifier=Z,e.isIterable=h,e.isIterator=M,e.isObject=c,e.mixin=o,e.mixinTarget=$,e.targetExtend=f,e.targetMixin=v,e.waitAsyncable=J,Object.defineProperties(e,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis](./type-tls.axis.md) > [getCrossAxiss](./type-tls.axis.getcrossaxiss.md)
|
|
4
|
+
|
|
5
|
+
## Axis.getCrossAxiss() function
|
|
6
|
+
|
|
7
|
+
获取剩余的另外两个轴
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
function getCrossAxiss(axis: Axis): [
|
|
13
|
+
Axis,
|
|
14
|
+
Axis
|
|
15
|
+
];
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Parameters
|
|
19
|
+
|
|
20
|
+
| Parameter | Type | Description |
|
|
21
|
+
| --- | --- | --- |
|
|
22
|
+
| axis | [Axis](./type-tls.axis.md) | |
|
|
23
|
+
|
|
24
|
+
<b>Returns:</b>
|
|
25
|
+
|
|
26
|
+
\[ [Axis](./type-tls.axis.md)<!-- -->, [Axis](./type-tls.axis.md) \]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## Remarks
|
|
30
|
+
|
|
31
|
+
获取除 axis 之外的另外两个轴,且这两轴的顺序符合叉乘得 axis 轴的顺序
|
|
32
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis](./type-tls.axis.md)
|
|
4
|
+
|
|
5
|
+
## Axis namespace
|
|
6
|
+
|
|
7
|
+
轴的方法
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare namespace Axis
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Functions
|
|
16
|
+
|
|
17
|
+
| Function | Description |
|
|
18
|
+
| --- | --- |
|
|
19
|
+
| [getCrossAxiss(axis)](./type-tls.axis.getcrossaxiss.md) | 获取剩余的另外两个轴 |
|
|
20
|
+
| [toIndex(name)](./type-tls.axis.toindex.md) | 将轴名字转为轴索引 |
|
|
21
|
+
| [toKey(index)](./type-tls.axis.tokey.md) | 将轴索引转为轴名字 |
|
|
22
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis](./type-tls.axis.md) > [toIndex](./type-tls.axis.toindex.md)
|
|
4
|
+
|
|
5
|
+
## Axis.toIndex() function
|
|
6
|
+
|
|
7
|
+
将轴名字转为轴索引
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
function toIndex(name: AxisName): Axis;
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
| Parameter | Type | Description |
|
|
18
|
+
| --- | --- | --- |
|
|
19
|
+
| name | [AxisName](./type-tls.axisname.md) | |
|
|
20
|
+
|
|
21
|
+
<b>Returns:</b>
|
|
22
|
+
|
|
23
|
+
[Axis](./type-tls.axis.md)
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis](./type-tls.axis.md) > [toKey](./type-tls.axis.tokey.md)
|
|
4
|
+
|
|
5
|
+
## Axis.toKey() function
|
|
6
|
+
|
|
7
|
+
将轴索引转为轴名字
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
function toKey(index: Axis): AxisName;
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
| Parameter | Type | Description |
|
|
18
|
+
| --- | --- | --- |
|
|
19
|
+
| index | [Axis](./type-tls.axis.md) | 索引 |
|
|
20
|
+
|
|
21
|
+
<b>Returns:</b>
|
|
22
|
+
|
|
23
|
+
[AxisName](./type-tls.axisname.md)
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis4](./type-tls.axis4.md) > [getCrossAxiss](./type-tls.axis4.getcrossaxiss.md)
|
|
4
|
+
|
|
5
|
+
## Axis4.getCrossAxiss() function
|
|
6
|
+
|
|
7
|
+
获取剩余的另外两个轴
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
function getCrossAxiss(axis: Axis4): [
|
|
13
|
+
Axis4,
|
|
14
|
+
Axis4
|
|
15
|
+
];
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Parameters
|
|
19
|
+
|
|
20
|
+
| Parameter | Type | Description |
|
|
21
|
+
| --- | --- | --- |
|
|
22
|
+
| axis | [Axis4](./type-tls.axis4.md) | |
|
|
23
|
+
|
|
24
|
+
<b>Returns:</b>
|
|
25
|
+
|
|
26
|
+
\[ [Axis4](./type-tls.axis4.md)<!-- -->, [Axis4](./type-tls.axis4.md) \]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## Remarks
|
|
30
|
+
|
|
31
|
+
获取除 axis 之外的另外两个轴,且这两轴的顺序符合叉乘得 axis 轴的顺序
|
|
32
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis4](./type-tls.axis4.md)
|
|
4
|
+
|
|
5
|
+
## Axis4 namespace
|
|
6
|
+
|
|
7
|
+
四维轴的方法
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare namespace Axis4
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Functions
|
|
16
|
+
|
|
17
|
+
| Function | Description |
|
|
18
|
+
| --- | --- |
|
|
19
|
+
| [getCrossAxiss(axis)](./type-tls.axis4.getcrossaxiss.md) | 获取剩余的另外两个轴 |
|
|
20
|
+
| [toIndex(name)](./type-tls.axis4.toindex.md) | 将轴名字转为轴索引 |
|
|
21
|
+
| [toKey(index)](./type-tls.axis4.tokey.md) | 将轴索引转为轴名字 |
|
|
22
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis4](./type-tls.axis4.md) > [toIndex](./type-tls.axis4.toindex.md)
|
|
4
|
+
|
|
5
|
+
## Axis4.toIndex() function
|
|
6
|
+
|
|
7
|
+
将轴名字转为轴索引
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
function toIndex(name: Axis4Name): Axis4;
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
| Parameter | Type | Description |
|
|
18
|
+
| --- | --- | --- |
|
|
19
|
+
| name | [Axis4Name](./type-tls.axis4name.md) | |
|
|
20
|
+
|
|
21
|
+
<b>Returns:</b>
|
|
22
|
+
|
|
23
|
+
[Axis4](./type-tls.axis4.md)
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis4](./type-tls.axis4.md) > [toKey](./type-tls.axis4.tokey.md)
|
|
4
|
+
|
|
5
|
+
## Axis4.toKey() function
|
|
6
|
+
|
|
7
|
+
将轴索引转为轴名字
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
function toKey(index: Axis4): Axis4Name;
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
| Parameter | Type | Description |
|
|
18
|
+
| --- | --- | --- |
|
|
19
|
+
| index | [Axis4](./type-tls.axis4.md) | 索引 |
|
|
20
|
+
|
|
21
|
+
<b>Returns:</b>
|
|
22
|
+
|
|
23
|
+
[Axis4Name](./type-tls.axis4name.md)
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [Axis4Name](./type-tls.axis4name.md)
|
|
4
|
+
|
|
5
|
+
## Axis4Name type
|
|
6
|
+
|
|
7
|
+
四维轴的名字
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare type Axis4Name = "x" | "y" | "z";
|
|
13
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [AxisName](./type-tls.axisname.md)
|
|
4
|
+
|
|
5
|
+
## AxisName type
|
|
6
|
+
|
|
7
|
+
轴名
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare type AxisName = "x" | "y" | "z";
|
|
13
|
+
```
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [IVector](./type-tls.ivector.md)
|
|
4
|
+
|
|
5
|
+
## IVector type
|
|
6
|
+
|
|
7
|
+
向量
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare type IVector = IVector2 | IVector3 | IVector4;
|
|
13
|
+
```
|
|
14
|
+
<b>References:</b> [IVector2](./type-tls.ivector2.md)<!-- -->, [IVector3](./type-tls.ivector3.md)<!-- -->, [IVector4](./type-tls.ivector4.md)
|
|
15
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [IVector2](./type-tls.ivector2.md)
|
|
4
|
+
|
|
5
|
+
## IVector2 interface
|
|
6
|
+
|
|
7
|
+
二维向量
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export interface IVector2
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Properties
|
|
16
|
+
|
|
17
|
+
| Property | Modifiers | Type | Description |
|
|
18
|
+
| --- | --- | --- | --- |
|
|
19
|
+
| [x](./type-tls.ivector2.x.md) | | number | |
|
|
20
|
+
| [y](./type-tls.ivector2.y.md) | | number | |
|
|
21
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [IVector2](./type-tls.ivector2.md) > [x](./type-tls.ivector2.x.md)
|
|
4
|
+
|
|
5
|
+
## IVector2.x property
|
|
6
|
+
|
|
7
|
+
<b>Signature:</b>
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
x: number;
|
|
11
|
+
```
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [IVector2](./type-tls.ivector2.md) > [y](./type-tls.ivector2.y.md)
|
|
4
|
+
|
|
5
|
+
## IVector2.y property
|
|
6
|
+
|
|
7
|
+
<b>Signature:</b>
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
y: number;
|
|
11
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [IVector3](./type-tls.ivector3.md)
|
|
4
|
+
|
|
5
|
+
## IVector3 interface
|
|
6
|
+
|
|
7
|
+
三维向量
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export interface IVector3 extends IVector2
|
|
13
|
+
```
|
|
14
|
+
<b>Extends:</b> [IVector2](./type-tls.ivector2.md)
|
|
15
|
+
|
|
16
|
+
## Properties
|
|
17
|
+
|
|
18
|
+
| Property | Modifiers | Type | Description |
|
|
19
|
+
| --- | --- | --- | --- |
|
|
20
|
+
| [z](./type-tls.ivector3.z.md) | | number | |
|
|
21
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [IVector3](./type-tls.ivector3.md) > [z](./type-tls.ivector3.z.md)
|
|
4
|
+
|
|
5
|
+
## IVector3.z property
|
|
6
|
+
|
|
7
|
+
<b>Signature:</b>
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
z: number;
|
|
11
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [IVector4](./type-tls.ivector4.md)
|
|
4
|
+
|
|
5
|
+
## IVector4 interface
|
|
6
|
+
|
|
7
|
+
四维向量
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export interface IVector4 extends IVector3
|
|
13
|
+
```
|
|
14
|
+
<b>Extends:</b> [IVector3](./type-tls.ivector3.md)
|
|
15
|
+
|
|
16
|
+
## Properties
|
|
17
|
+
|
|
18
|
+
| Property | Modifiers | Type | Description |
|
|
19
|
+
| --- | --- | --- | --- |
|
|
20
|
+
| [w](./type-tls.ivector4.w.md) | | number | |
|
|
21
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [IVector4](./type-tls.ivector4.md) > [w](./type-tls.ivector4.w.md)
|
|
4
|
+
|
|
5
|
+
## IVector4.w property
|
|
6
|
+
|
|
7
|
+
<b>Signature:</b>
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
w: number;
|
|
11
|
+
```
|
package/doc/api/type-tls.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
type-tls 封装了与类型相关的工具,比如获取数据的类型 或 类型名字、判断数据的类型 等
|
|
12
12
|
|
|
13
|
+
## Enumerations
|
|
14
|
+
|
|
15
|
+
| Enumeration | Description |
|
|
16
|
+
| --- | --- |
|
|
17
|
+
| [Axis](./type-tls.axis.md) | 轴 |
|
|
18
|
+
| [Axis4](./type-tls.axis4.md) | 四维轴 |
|
|
19
|
+
|
|
13
20
|
## Functions
|
|
14
21
|
|
|
15
22
|
| Function | Description |
|
|
@@ -50,16 +57,29 @@ type-tls 封装了与类型相关的工具,比如获取数据的类型 或 类
|
|
|
50
57
|
| Interface | Description |
|
|
51
58
|
| --- | --- |
|
|
52
59
|
| [ClassType](./type-tls.classtype.md) | 类的类型、构造函数的类型 |
|
|
60
|
+
| [IVector2](./type-tls.ivector2.md) | 二维向量 |
|
|
61
|
+
| [IVector3](./type-tls.ivector3.md) | 三维向量 |
|
|
62
|
+
| [IVector4](./type-tls.ivector4.md) | 四维向量 |
|
|
53
63
|
| [PrivateMemberOfExtend](./type-tls.privatememberofextend.md) | 用于定义扩展选项中的私有成员 |
|
|
54
64
|
|
|
65
|
+
## Namespaces
|
|
66
|
+
|
|
67
|
+
| Namespace | Description |
|
|
68
|
+
| --- | --- |
|
|
69
|
+
| [Axis](./type-tls.axis.md) | 轴的方法 |
|
|
70
|
+
| [Axis4](./type-tls.axis4.md) | 四维轴的方法 |
|
|
71
|
+
|
|
55
72
|
## Type Aliases
|
|
56
73
|
|
|
57
74
|
| Type Alias | Description |
|
|
58
75
|
| --- | --- |
|
|
59
76
|
| [AnyFunction](./type-tls.anyfunction.md) | 表示任意的函数类型 |
|
|
60
77
|
| [ArrayItemType](./type-tls.arrayitemtype.md) | 获取数组元素的类型 |
|
|
78
|
+
| [Axis4Name](./type-tls.axis4name.md) | 四维轴的名字 |
|
|
79
|
+
| [AxisName](./type-tls.axisname.md) | 轴名 |
|
|
61
80
|
| [ExactType](./type-tls.exacttype.md) | 精确类型 |
|
|
62
81
|
| [ExactTypeName](./type-tls.exacttypename.md) | 精确类型的字符串表示 |
|
|
82
|
+
| [IVector](./type-tls.ivector.md) | 向量 |
|
|
63
83
|
| [KeyOfContainsValue](./type-tls.keyofcontainsvalue.md) | 获取值类型包含指定类型的所有 key |
|
|
64
84
|
| [KeyOfNonContainsValue](./type-tls.keyofnoncontainsvalue.md) | 获取值类型不应包含指定类型的所有 key |
|
|
65
85
|
| [KeyOfNonValue](./type-tls.keyofnonvalue.md) | 获取值类型不是指定类型的所有 key |
|
|
@@ -70,6 +90,10 @@ type-tls 封装了与类型相关的工具,比如获取数据的类型 或 类
|
|
|
70
90
|
| [MethodReturnType](./type-tls.methodreturntype.md) | 获取对象的方法的返回的类型 |
|
|
71
91
|
| [Optional](./type-tls.optional.md) | 将某个类型变为可选的类型 |
|
|
72
92
|
| [OptionalBoolean](./type-tls.optionalboolean.md) | 可选的布尔类型 |
|
|
93
|
+
| [PickContainsValue](./type-tls.pickcontainsvalue.md) | 从 T 中挑选出那些成员值的类型包含 V 类型的成员 |
|
|
94
|
+
| [PickNonContainsValue](./type-tls.picknoncontainsvalue.md) | 从 T 中挑选出那些成员值的类型不包含 V 类型的成员 |
|
|
95
|
+
| [PickNonValue](./type-tls.picknonvalue.md) | 从 T 中挑选出那些成员值不是 V 的类型的成员 |
|
|
96
|
+
| [PickValue](./type-tls.pickvalue.md) | 从 T 中挑选出那些成员值为 V 的类型的成员 |
|
|
73
97
|
| [Replace](./type-tls.replace.md) | 可将源类型 SourType 中的 类型 MatchType 替换为 新的类型 NewType |
|
|
74
98
|
| [ReplaceNull](./type-tls.replacenull.md) | 可将源类型 SourType 中的 null 替换为 新的类型 NewType |
|
|
75
99
|
| [ReplaceUndefined](./type-tls.replaceundefined.md) | 可将源类型 SourType 中的 undefined 替换为 新的类型 NewType |
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [PickContainsValue](./type-tls.pickcontainsvalue.md)
|
|
4
|
+
|
|
5
|
+
## PickContainsValue type
|
|
6
|
+
|
|
7
|
+
从 T 中挑选出那些成员值的类型包含 V 类型的成员
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare type PickContainsValue<T, V extends T[keyof T]> = {
|
|
13
|
+
[P in KeyOfContainsValue<T, V>]: T[P];
|
|
14
|
+
};
|
|
15
|
+
```
|
|
16
|
+
<b>References:</b> [KeyOfContainsValue](./type-tls.keyofcontainsvalue.md)
|
|
17
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [PickNonContainsValue](./type-tls.picknoncontainsvalue.md)
|
|
4
|
+
|
|
5
|
+
## PickNonContainsValue type
|
|
6
|
+
|
|
7
|
+
从 T 中挑选出那些成员值的类型不包含 V 类型的成员
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare type PickNonContainsValue<T, V extends T[keyof T]> = {
|
|
13
|
+
[P in KeyOfNonContainsValue<T, V>]: T[P];
|
|
14
|
+
};
|
|
15
|
+
```
|
|
16
|
+
<b>References:</b> [KeyOfNonContainsValue](./type-tls.keyofnoncontainsvalue.md)
|
|
17
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [PickNonValue](./type-tls.picknonvalue.md)
|
|
4
|
+
|
|
5
|
+
## PickNonValue type
|
|
6
|
+
|
|
7
|
+
从 T 中挑选出那些成员值不是 V 的类型的成员
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare type PickNonValue<T, V extends T[keyof T]> = {
|
|
13
|
+
[P in KeyOfNonValue<T, V>]: T[P];
|
|
14
|
+
};
|
|
15
|
+
```
|
|
16
|
+
<b>References:</b> [KeyOfNonValue](./type-tls.keyofnonvalue.md)
|
|
17
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [type-tls](./type-tls.md) > [PickValue](./type-tls.pickvalue.md)
|
|
4
|
+
|
|
5
|
+
## PickValue type
|
|
6
|
+
|
|
7
|
+
从 T 中挑选出那些成员值为 V 的类型的成员
|
|
8
|
+
|
|
9
|
+
<b>Signature:</b>
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export declare type PickValue<T, V extends T[keyof T]> = {
|
|
13
|
+
[P in KeyOfValue<T, V>]: T[P];
|
|
14
|
+
};
|
|
15
|
+
```
|
|
16
|
+
<b>References:</b> [KeyOfValue](./type-tls.keyofvalue.md)
|
|
17
|
+
|