UNPKG

dotbit-sdk-allin

Version:

A complete .bit SDK and utilities in TypeScript

10 lines (9 loc) 302 B
import { BitAccount } from './BitAccount'; import { DotBit } from './DotBit'; export interface BitPluginBase { version?: string; name?: string; onInstall: (dotbit: DotBit) => void; onUninstall?: (dotbit: DotBit) => void; onInitAccount?: (bitAccount: BitAccount) => void; }