import type * as HydraDB from "../index.js"; /** * ForcefulRelations is the caller-declared relation bucket, carrying the * from->to edge that additional_context discards when it flattens these * into a chunk-uuid map. Always present, so a caller can read it * unconditionally. */ export interface SearchForcefulRelationsBucket { declared?: HydraDB.SearchForcefulRelationEntry[]; inferred?: HydraDB.SearchForcefulRelationEntry[]; }