steem-auth-vue
Version:
A Vue 3 authentication component for Steem blockchain and Echelon sidechain
10 lines (8 loc) • 568 B
TypeScript
import { App } from 'vue';
import { default as SteemAuth } from './components/SteemAuth.vue';
import { default as SteemTransactions } from './components/SteemTransactions.vue';
import { default as EchelonTransactions } from './components/EchelonTransactions.vue';
import { useAuthStore, provideAuthStore } from './stores/auth';
import { default as TransactionService } from './services/transaction';
export { SteemAuth, SteemTransactions, EchelonTransactions, useAuthStore, provideAuthStore, TransactionService };
export declare const install: (app: App) => void;