import type { EmptyObject } from './EmptyObject.ts'; /** Intersects T with TAdditional if TAdditional is an object, otherwise returns T unchanged. */ export type WithAdditional = TAdditional extends EmptyObject ? T & TAdditional : T; //# sourceMappingURL=WithAdditional.d.ts.map