/// ////interface I { x: number; } ////interface Many extends ReadonlyArray { extra: number; } ////class C { private priv: number; } ////const x: I | I[] | Many | C = { /**/ }; // We specifically filter out any array-like types. // Private members will be excluded by `createUnionOrIntersectionProperty`. verify.completions({ marker: "", exact: "x" });