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