import { PostProcessStage } from "cesium"; import { expectType, TypeEqual } from "ts-expect"; import { it } from "vitest"; import { PostProcessStageProps } from "./PostProcessStage"; import { UnusedCesiumProps } from "./types"; // Unused prop check type UnusedProps = UnusedCesiumProps; type IgnoredProps = never; expectType, never>>(true); it("should be compiled", () => {});