@particle-network/auth-core-modal
Version:
Auth Core provides MPC (Multi-Party Computation)-based threshold signatures.
13 lines (12 loc) • 335 B
TypeScript
import { AuthType } from '@particle-network/auth-core';
import React from 'react';
export interface IAccountInfo {
type: AuthType;
icon: string;
name: string;
value: string;
id?: string;
isOriginal?: boolean;
}
declare const LoginAccountBind: (props: any) => React.JSX.Element;
export default LoginAccountBind;