resium
Version:
React component library for Cesium
16 lines (10 loc) • 448 B
text/typescript
import { SkyAtmosphere } from "cesium";
import { expectType, TypeEqual } from "ts-expect";
import { it } from "vitest";
import { UnusedCesiumProps } from "../core";
import { SkyAtmosphereProps } from "./SkyAtmosphere";
// Unused prop check
type UnusedProps = UnusedCesiumProps<SkyAtmosphere, SkyAtmosphereProps, {}, IgnoredProps>;
type IgnoredProps = never;
expectType<TypeEqual<never, UnusedProps>>(true);
it("should be compiled", () => {});