import { expectType, TypeEqual } from "ts-expect"; import { it } from "vitest"; import { UnusedCesiumProps } from "../core"; import { GroundPolylinePrimitiveOtherProps, GroundPolylinePrimitiveProps, Target, } from "./GroundPolylinePrimitive"; // Unused prop check type UnusedProps = UnusedCesiumProps< Target, Omit, {}, IgnoredProps >; type IgnoredProps = "onReady"; expectType>(true); it("should be compiled", () => {});