fix: repair doctor shared record guard imports

This commit is contained in:
Peter Steinberger
2026-04-07 00:26:30 +01:00
parent 0003a3cf3e
commit d6b1cce55c
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
import { isRecord } from "../../../utils.js";
type JsonRecord = Record<string, unknown>;
export type { JsonRecord };
export { isRecord } from "../../../utils.js";
export { isRecord };
export function cloneRecord<T extends JsonRecord>(value: T | undefined): T {
return { ...value } as T;

View File

@@ -1,5 +1,4 @@
import { normalizeOptionalString } from "../shared/string-coerce.js";
import { isPlainObject } from "../infra/plain-object.js";
import { isRecord } from "../utils.js";
import type {
ResolvedTalkConfig,