mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-06 15:36:16 +00:00
5 lines
264 B
TypeScript
5 lines
264 B
TypeScript
/** Return whether a value is a non-array object record. */
|
|
export function isRecord(value: unknown): value is Record<string, unknown>;
|
|
|
|
/** Trim string values while converting non-strings to an empty string. */
|
|
export function trimString(value: unknown): string;
|