@lsby/net-core 0.0.5-beta.2 → 0.0.5-beta.3
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/cjs/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { 任意接口, 接口 } from './interface/interface.cjs';
|
|
2
|
-
export { 接口类型 } from './interface/interface-type.cjs';
|
|
2
|
+
export { 任意接口类型, 接口类型 } from './interface/interface-type.cjs';
|
|
3
3
|
export { 合并插件结果, 插件 } from './interface/plug.cjs';
|
|
4
4
|
export { 中文路径支持插件 } from './plug/chinese-path.cjs';
|
|
5
5
|
export { 自定义数据插件 } from './plug/custom-data.cjs';
|
package/dist/cjs/test/test.d.cts
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
import { Task } from '@lsby/ts-fp-data';
|
|
2
|
-
import {
|
|
2
|
+
import { 任意接口类型 as ______ } from '../interface/interface-type.cjs';
|
|
3
3
|
import 'zod';
|
|
4
|
-
import '../result/result.cjs';
|
|
5
|
-
import 'express';
|
|
6
4
|
import '../types/type-hold.cjs';
|
|
7
|
-
import '../interface/interface-type.cjs';
|
|
8
5
|
import '../interface/plug.cjs';
|
|
6
|
+
import 'express';
|
|
9
7
|
|
|
10
|
-
declare class
|
|
8
|
+
declare class 测试 {
|
|
11
9
|
private 接口类型;
|
|
12
10
|
private 前置;
|
|
13
11
|
private 中置;
|
|
14
12
|
private 后置;
|
|
15
|
-
constructor(接口类型:
|
|
13
|
+
constructor(接口类型: ______, 前置: Task<void>, 中置: Task<object>, 后置: (中置结果: object) => Task<void>);
|
|
16
14
|
运行(): Promise<void>;
|
|
17
15
|
}
|
|
18
16
|
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { 任意接口, 接口 } from './interface/interface.js';
|
|
2
|
-
export { 接口类型 } from './interface/interface-type.js';
|
|
2
|
+
export { 任意接口类型, 接口类型 } from './interface/interface-type.js';
|
|
3
3
|
export { 合并插件结果, 插件 } from './interface/plug.js';
|
|
4
4
|
export { 中文路径支持插件 } from './plug/chinese-path.js';
|
|
5
5
|
export { 自定义数据插件 } from './plug/custom-data.js';
|
package/dist/esm/test/test.d.ts
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
import { Task } from '@lsby/ts-fp-data';
|
|
2
|
-
import {
|
|
2
|
+
import { 任意接口类型 as ______ } from '../interface/interface-type.js';
|
|
3
3
|
import 'zod';
|
|
4
|
-
import '../result/result.js';
|
|
5
|
-
import 'express';
|
|
6
4
|
import '../types/type-hold.js';
|
|
7
|
-
import '../interface/interface-type.js';
|
|
8
5
|
import '../interface/plug.js';
|
|
6
|
+
import 'express';
|
|
9
7
|
|
|
10
|
-
declare class
|
|
8
|
+
declare class 测试 {
|
|
11
9
|
private 接口类型;
|
|
12
10
|
private 前置;
|
|
13
11
|
private 中置;
|
|
14
12
|
private 后置;
|
|
15
|
-
constructor(接口类型:
|
|
13
|
+
constructor(接口类型: ______, 前置: Task<void>, 中置: Task<object>, 后置: (中置结果: object) => Task<void>);
|
|
16
14
|
运行(): Promise<void>;
|
|
17
15
|
}
|
|
18
16
|
|