import { HashSetInternal } from "@tsplus/stdlib/collections/HashSet/_internal/hashSet" /** * Returns a `HashSet` of keys within the `HashMap`. * * @tsplus getter HashMap keySet */ export function keySet(self: HashMap): HashSet { return new HashSetInternal(self) }