主要功能: - 修改RequirementModal支持12个订单班选择 - 添加OrderClassIconMap图标映射组件 - Store中添加selectedOrderClass状态管理 - WorkflowPage支持传递orderClass参数 - web_result添加URL参数切换功能 - 创建order-class-handler.js动态处理页面主题 技术改进: - 创建软链接关联订单班数据目录 - 生成wenlu.json和food.json数据结构 - 删除重复的web_result目录 - 添加测试页面test-order-class.html 影响范围: - 展会策划系统现支持12个订单班 - 结果展示页面自动适配不同订单班主题 - 用户可选择不同行业生成对应方案 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
declare namespace pLimit {
|
|
interface Limit {
|
|
/**
|
|
The number of promises that are currently running.
|
|
*/
|
|
readonly activeCount: number;
|
|
|
|
/**
|
|
The number of promises that are waiting to run (i.e. their internal `fn` was not called yet).
|
|
*/
|
|
readonly pendingCount: number;
|
|
|
|
/**
|
|
Discard pending promises that are waiting to run.
|
|
|
|
This might be useful if you want to teardown the queue at the end of your program's lifecycle or discard any function calls referencing an intermediary state of your app.
|
|
|
|
Note: This does not cancel promises that are already running.
|
|
*/
|
|
clearQueue: () => void;
|
|
|
|
/**
|
|
@param fn - Promise-returning/async function.
|
|
@param arguments - Any arguments to pass through to `fn`. Support for passing arguments on to the `fn` is provided in order to be able to avoid creating unnecessary closures. You probably don't need this optimization unless you're pushing a lot of functions.
|
|
@returns The promise returned by calling `fn(...arguments)`.
|
|
*/
|
|
<Arguments extends unknown[], ReturnType>(
|
|
fn: (...arguments: Arguments) => PromiseLike<ReturnType> | ReturnType,
|
|
...arguments: Arguments
|
|
): Promise<ReturnType>;
|
|
}
|
|
}
|
|
|
|
/**
|
|
Run multiple promise-returning & async functions with limited concurrency.
|
|
|
|
@param concurrency - Concurrency limit. Minimum: `1`.
|
|
@returns A `limit` function.
|
|
*/
|
|
declare function pLimit(concurrency: number): pLimit.Limit;
|
|
|
|
export = pLimit;
|