import type { TypeEqual } from "ts-expect"; import { expectType } from "ts-expect"; import { it } from "vitest"; import type { UnusedCesiumProps } from "../core"; import type { ViewerProps, cesiumEventProps, Target, ViewerOtherProps } from "./Viewer"; // Unused prop check type UnusedProps = UnusedCesiumProps< Target, Omit, typeof cesiumEventProps, IgnoredProps >; type IgnoredProps = "contextOptions" | "terrainProvider"; // contextOptions is actually used expectType>(true); it("should be compiled", () => {});