UNPKG

@junobuild/admin

Version:

A library for interfacing with admin features of Juno

11 lines (10 loc) 466 B
import type { OrbiterParameters } from '@junobuild/ic-client/actor'; /** * Retrieves the version of the Orbiter. * @param {Object} params - The parameters for the Orbiter. * @param {OrbiterParameters} params.orbiter - The Orbiter parameters. * @returns {Promise<string>} A promise that resolves to the version of the Orbiter. */ export declare const orbiterVersion: ({ orbiter: { orbiterId, ...rest } }: { orbiter: OrbiterParameters; }) => Promise<string>;