import { Relation } from './Relation.js'; /** * Relation with optional id. */ type RelationWithOptionalId = Omit & Pick, 'id'>; export { RelationWithOptionalId };