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