import { CylinderGraphics } from "cesium"; import { expectType, TypeEqual } from "ts-expect"; import { it } from "vitest"; import { Merge, UnusedCesiumProps } from "../core"; import { cesiumEventProps, CylinderGraphicsProps } from "./CylinderGraphics"; // Unused prop check type UnusedProps = UnusedCesiumProps< Merge, CylinderGraphicsProps, typeof cesiumEventProps, IgnoredProps >; type IgnoredProps = never; expectType>(true); it("should be compiled", () => {});