Skip to content

Commit

Permalink
Ver 2.10304.0
Browse files Browse the repository at this point in the history
  • Loading branch information
E0SelmY4V committed Mar 4, 2023
1 parent 5d236ee commit d0c2429
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ declare namespace t {
// type sn<T> = S.Proce<T extends AnyArr<S.CbNxt<infer P1>> ? P1 : S.DefP, T extends AnyArr<S.CbNxt<AnyArr, AnyArr, infer E1>> ? E1 : S.DefE> extends S.Proce<infer P, infer E> ? S.Proce<P, E> : S.DefProce;
}
declare global {
/**
* 幻想私社异步过程类
* @version 2.10304.0
* @license GPL-3.0-or-later
* @link https://github.com/E0SelmY4V/scpo-proce
*/
var scpoProce: scpoProce.pipe;
namespace scpoProce {
/**以 {@link P} 和 {@link T} 为参数列表,以 {@link R} 为返回值的函数 */
type CbNor<P extends AnyArr = AnyArr, R = any, T extends AnyArr = []> = (...arg: [...P, ...T]) => R;
Expand Down Expand Up @@ -236,11 +243,4 @@ declare global {
/**可以执行 {@link Executor|异步执行器} 的东西 */
type Nxtable = ProceN | typeof scpoProce;
}
/**
* 幻想私社异步过程类
* @version 2.10124.0
* @license GPL-3.0-or-later
* @link https://github.com/E0SelmY4V/scpo-proce
*/
var scpoProce: scpoProce.pipe;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scpo-proce",
"version": "2.10124.0",
"version": "2.10304.0",
"description": "Make your async programming easier",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion source.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* 幻想私社异步过程类
* @version 2.10124.0
* @version 2.10304.0
* @license GPL-3.0-or-later
* @link https://github.com/E0SelmY4V/scpo-proce
*/
Expand Down

0 comments on commit d0c2429

Please sign in to comment.