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