import { PointPrimitiveCollection } from "cesium"; import { expectType, TypeEqual } from "ts-expect"; import { it } from "vitest"; import { UnusedCesiumProps } from "../core"; import { PointPrimitiveCollectionOtherProps, PointPrimitiveCollectionProps, } from "./PointPrimitiveCollection"; // Unused prop check type UnusedProps = UnusedCesiumProps< PointPrimitiveCollection, Omit, {}, IgnoredProps >; type IgnoredProps = "length"; expectType>(true); it("should be compiled", () => {});