@blockchaincommons/xid - v1.0.0-beta.3
    Preparing search index...

    Interface KeyInput

    What Key.from takes besides the public keys.

    interface KeyInput {
        privateKeys?: PrivateKeys;
        nickname?: string;
        endpoints?: Iterable<string | URI, any, any>;
        permissions?: Permissions;
    }
    Index
    privateKeys?: PrivateKeys

    With private keys the key is allowed All unless permissions says otherwise.

    nickname?: string

    The nickname; none unless given.

    endpoints?: Iterable<string | URI, any, any>

    The endpoints, as URIs or their text.

    permissions?: Permissions

    The permissions; empty unless given (or All with private keys).