import type { TypeEqual } from "ts-expect"; import { expectType } from "ts-expect"; import { it } from "vitest"; import type { UnusedCesiumProps } from "../core"; import type { Target, GeoJsonDataSourceProps, cesiumEventProps, GeoJsonDataSourceOtherProps, } from "./GeoJsonDataSource"; // Unused prop check type UnusedProps = UnusedCesiumProps< Target, Omit, typeof cesiumEventProps, IgnoredProps >; type IgnoredProps = "clock" | "entities" | "isLoading"; expectType>(true); it("should be compiled", () => {});