import type { BufferPointCollection } from "cesium"; import type { TypeEqual } from "ts-expect"; import { expectType } from "ts-expect"; import { it } from "vitest"; import type { UnusedCesiumProps } from "../core"; import type { BufferPointCollectionOtherProps, BufferPointCollectionProps, } from "./BufferPointCollection"; // Unused prop check type UnusedProps = UnusedCesiumProps< BufferPointCollection, Omit< BufferPointCollectionProps, | keyof BufferPointCollectionOtherProps | "primitiveCountMax" | "modelMatrix" | "boundingVolume" | "blendOption" >, {}, IgnoredProps >; type IgnoredProps = "length" | "DEFAULT_CAPACITY" | "boundingVolumeWC"; expectType>(true); it("should be compiled", () => {});