create-openchat-bot
Version:
CLI tool to create OpenChat bot templates
9 lines (7 loc) • 367 B
TypeScript
import type { Principal } from '@dfinity/principal';
import type { ActorMethod } from '@dfinity/agent';
import type { IDL } from '@dfinity/candid';
export interface InitOrUpgradeArgs { 'oc_public_key' : string }
export interface _SERVICE {}
export declare const idlFactory: IDL.InterfaceFactory;
export declare const init: (args: { IDL: typeof IDL }) => IDL.Type[];