mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 14:32:52 +00:00
* refactor: expand acp core package * chore: drop acp core package symlink * fix: keep acp core dependency graph stable * fix: add acp core tsconfig subpaths * fix: sync acp core boundary path artifacts * fix: use kysely for cron run-log queries * fix: resolve acp core subpaths in loaders
10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
import { resolveIntegerOption as resolveSharedIntegerOption } from "@openclaw/normalization-core/number-coercion";
|
|
|
|
export function resolveIntegerOption(
|
|
value: number | undefined,
|
|
fallback: number,
|
|
params: { min: number },
|
|
): number {
|
|
return resolveSharedIntegerOption(value, fallback, params);
|
|
}
|