What does `BoxCtor` represent, and which expression below is therefore valid?class Box { value = 0; static make() { return new Box(); } } type BoxCtor = typeof Box;