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