type-tls 3.1.0 → 3.1.1
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/other.d.ts
CHANGED
|
@@ -18,8 +18,8 @@ export declare enum BitFlagEqualTestType {
|
|
|
18
18
|
export declare namespace BitFlagEqualTestType {
|
|
19
19
|
/**
|
|
20
20
|
* 获取 位标志相等测试的函数
|
|
21
|
-
* @param testType
|
|
21
|
+
* @param testType 默认 intersectEqual
|
|
22
22
|
* @returns
|
|
23
23
|
*/
|
|
24
|
-
function getEqualFun(testType
|
|
24
|
+
function getEqualFun(testType?: BitFlagEqualTestType | null): (a: number, b: number) => number | boolean;
|
|
25
25
|
}
|
package/dist/type-tls.d.ts
CHANGED
|
@@ -30,10 +30,10 @@ export declare enum BitFlagEqualTestType {
|
|
|
30
30
|
export declare namespace BitFlagEqualTestType {
|
|
31
31
|
/**
|
|
32
32
|
* 获取 位标志相等测试的函数
|
|
33
|
-
* @param testType
|
|
33
|
+
* @param testType 默认 intersectEqual
|
|
34
34
|
* @returns
|
|
35
35
|
*/
|
|
36
|
-
export function getEqualFun(testType
|
|
36
|
+
export function getEqualFun(testType?: BitFlagEqualTestType | null): (a: number, b: number) => number | boolean;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
/**
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
function getEqualFun(testType
|
|
12
|
+
function getEqualFun(testType?: BitFlagEqualTestType | null): (a: number, b: number) => number | boolean;
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Parameters
|
|
@@ -37,11 +37,13 @@ testType
|
|
|
37
37
|
|
|
38
38
|
</td><td>
|
|
39
39
|
|
|
40
|
-
[BitFlagEqualTestType](./type-tls.bitflagequaltesttype.md)
|
|
40
|
+
[BitFlagEqualTestType](./type-tls.bitflagequaltesttype.md) \| null
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
</td><td>
|
|
44
44
|
|
|
45
|
+
_(Optional)_ 默认 intersectEqual
|
|
46
|
+
|
|
45
47
|
|
|
46
48
|
</td></tr>
|
|
47
49
|
</tbody></table>
|