UNPKG

@funded-labs/plug-controller

Version:

Internet Computer Plug wallet's controller

13 lines (12 loc) 366 B
import { SignIdentity } from '@dfinity/agent'; import { JsonnableKeyPair } from './../../interfaces/identity'; export declare abstract class GenericSignIdentity extends SignIdentity { /** * Serialize this key to JSON. */ abstract toJSON(): JsonnableKeyPair; /** * Return private key in a pem file */ abstract getPem(): string; }