22 lines
474 B
TypeScript
22 lines
474 B
TypeScript
|
import { Plugin } from '@tachybase/client';
|
||
|
|
||
|
export class PluginBlockchainClient extends Plugin {
|
||
|
async afterAdd() {
|
||
|
// await this.app.pm.add()
|
||
|
}
|
||
|
|
||
|
async beforeLoad() {}
|
||
|
|
||
|
// You can get and modify the app instance here
|
||
|
async load() {
|
||
|
console.log(this.app);
|
||
|
// this.app.addComponents({})
|
||
|
// this.app.addScopes({})
|
||
|
// this.app.addProvider()
|
||
|
// this.app.addProviders()
|
||
|
// this.app.router.add()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default PluginBlockchainClient;
|