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