import { Cesium3DTileset } from "cesium"; import { expectType, TypeEqual } from "ts-expect"; import { it } from "vitest"; import { UnusedCesiumProps, Merge, ConstructorOptions } from "../core"; import { Cesium3DTilesetProps, cesiumEventProps, Cesium3DTilesetOtherProps, } from "./Cesium3DTileset"; // Unused prop check type UnusedProps = UnusedCesiumProps< Merge>, Omit, typeof cesiumEventProps, IgnoredProps >; type IgnoredProps = never; expectType>(false); it("should be compiled", () => {});