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