@junobuild/admin
Version:
A library for interfacing with admin features of Juno
8 lines (7 loc) • 377 B
TypeScript
import { Principal } from '@dfinity/principal';
import type { SetController } from '../../declarations/mission_control/mission_control.did';
import type { SetControllerParams } from '../types/controllers.types';
export declare const mapSetControllerParams: ({ controllerId, profile }: SetControllerParams) => {
controllerIds: Principal[];
controller: SetController;
};