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