@white-matrix/binance-wallet-service

1.1.4 • Public • Published

🚀 Welcome to your new awesome project!

This project has been created using webpack scaffold, you can now run

npm run compile

to bundle your application

npm run start

to start your application

插件项目结构

src 目录下为主项目目录 extension.ts 为插件入口文件,暴露三个属性

  • activate: 插件激活时,触发该函数,函数入参,

  • ctx: 插件内部上下午

  • Impl: 插件接口

  • deactivate: 插件注销时,触发该函数

  • config: 插件提供基本信息,详见 PluginConfigurations 类型

API List

添加右侧控制栏

    const addControls =  Impl.addControl({
        componentFunc: controls,
        name: 'Deploy & Interaction',
        iconName: 'GroupObject',
    })

    ctx.subscriptions.push(addControls)

设置欢迎页

    const setWelcomePage =  Impl.setWelcomePage({
        componentFunc: welcomePage,
        name: 'welcomePage',
        iconName: 'GroupObject',
    })

    ctx.subscriptions.push(setWelcomePage)

注册命令

    const setCommand =  Impl.registerCommand({
        id: 'commandId',
        name: 'command',
        callback: <T>(data?: T) => void,
    })

    ctx.subscriptions.push(setCommand)

注册方法

    const registerFunction =  Impl.registerFunction({
        name: 'functionName',
        function: <T>(data?: T) => void,
    })

    ctx.subscriptions.push(registerFunction)

Readme

Keywords

none

Package Sidebar

Install

npm i @white-matrix/binance-wallet-service

Weekly Downloads

15

Version

1.1.4

License

ISC

Unpacked Size

304 kB

Total Files

31

Last publish

Collaborators

  • feibowei
  • vera_wlz
  • hexi1997
  • sleepyyj
  • 12ain
  • chen-yu
  • cxm123
  • kilru
  • lucklyric
  • q33357
  • xiadd