/** * Creates a new empty `ImmutableMap`. * * @tsplus static ImmutableMap.Ops empty */ export function empty(): ImmutableMap { return new ImmutableMap(new Map()) }