import { PointPrimitive } from "cesium"; import { expectType, TypeEqual } from "ts-expect"; import { it } from "vitest"; import { UnusedCesiumProps } from "../core"; import { PointPrimitiveOtherProps, PointPrimitiveProps } from "./PointPrimitive"; // Unused prop check type UnusedProps = UnusedCesiumProps< PointPrimitive, Omit, {}, IgnoredProps >; type IgnoredProps = "id"; // id is actually used expectType>(true); it("should be compiled", () => {});