import type { PolylineCollection } from "cesium"; import type { TypeEqual } from "ts-expect"; import { expectType } from "ts-expect"; import { it } from "vitest"; import type { UnusedCesiumProps } from "../core"; import type { PolylineCollectionOtherProps, PolylineCollectionProps } from "./PolylineCollection"; // Unused prop check type UnusedProps = UnusedCesiumProps< PolylineCollection, Omit, {}, IgnoredProps >; type IgnoredProps = never; expectType>(true); it("should be compiled", () => {});