@tronic-ext/ui-launcher
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Tronic Extension UI Launcher

Installation

npm i tronic-sdk @tronic-ext/ui-launcher

Setup

Setup UILauncherExtension with tronic-sdk

import { Tronic } from 'tronic-sdk';
import { UILauncherExtension } from '@tronic-ext/ui-launcher';

const tronic = new Tronic('YOUR_API_KEY', {
    endpoint: 'https://your-endpoint.tronic.app',
    extensions: [
        new UILauncherExtension()
    ]
});

// or 

const tronic = new Tronic('YOUR_API_KEY', {
    endpoint: 'https://your-endpoint.tronic.app',
    extensions: {
        uiLauncher: new UILauncherExtension()
    }
});

Usage

Mount the UI Launcher component

tronic.uiLauncher.mount()

Controlling visibility

tronic.uiLauncher.show()
tronic.uiLauncher.hide()

Readme

Keywords

none

Package Sidebar

Install

npm i @tronic-ext/ui-launcher

Weekly Downloads

5

Version

1.0.0

License

MIT

Unpacked Size

560 kB

Total Files

14

Last publish

Collaborators

  • jmoore2026
  • natemoore3_tronic