import type { Nova, NovaClient } from "@wandelbots/nova-js/v2"; /** * A Nova-like client. We accept either the current instance-level `Nova` * client or, for backwards compatibility, the deprecated cell-scoped * `NovaClient`. */ export type AnyNovaClient = Nova | NovaClient; /** * For backwards compatibility we still accept the deprecated cell-scoped * `NovaClient`. This normalizes it to present the same interface as the * current instance-level `Nova` client, so the rest of the code can be * written against the newer API. * * Instance-level `Nova` clients are returned unchanged. */ export declare function asNovaInstance(nova: AnyNovaClient): Nova;