mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 14:21:34 +00:00
6 lines
264 B
TypeScript
6 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;
|