Generic parameters are not shown on function tooltips

Here;

local function find<K, V>(t: { read [K]: V }, v: V): K
	for a, b in t do
		if b == v then
			return a
		end
	end
	
	return nil
end

, we can see that the function has multiple generic parameters. When hovering over it with the cursor, the following tooltip is shown:

Expected behavior

The generic parameter list <K, V> should be included in the stringification, as it is part of the overall type of the function.