mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08: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
7 lines
576 B
TypeScript
7 lines
576 B
TypeScript
//#region src/meta.d.ts
|
|
declare function readString(meta: Record<string, unknown> | null | undefined, keys: string[]): string | undefined;
|
|
declare function readBool(meta: Record<string, unknown> | null | undefined, keys: string[]): boolean | undefined;
|
|
declare function readNumber(meta: Record<string, unknown> | null | undefined, keys: string[]): number | undefined;
|
|
declare function readNonNegativeInteger(meta: Record<string, unknown> | null | undefined, keys: string[]): number | undefined;
|
|
//#endregion
|
|
export { readBool, readNonNegativeInteger, readNumber, readString }; |