UNPKG

@safik/fk-plug-controller

Version:

Internet Computer Plug wallet's controller

9 lines (8 loc) 396 B
import { HttpAgent } from '@dfinity/agent'; export interface CanisterInfo { name: string; description: string; icon: string; } export declare const getCanisterInfo: (canisterId: string, agent?: HttpAgent | undefined) => Promise<CanisterInfo | undefined>; export declare const getMultipleCanisterInfo: (canisterIds: string[], agent?: HttpAgent | undefined) => Promise<CanisterInfo[]>;