Sha256: b84eabbcec262518c89c16ae52f84f1cf17d7ea082bb91b88a6a3c90db4a5834
Contents?: true
Size: 573 Bytes
Versions: 36
Compression:
Stored size: 573 Bytes
Contents
import { JSONObject } from './utils'; export interface SignatureOptions { keyID: string; sig: string; } /** * A container class containing information about a signature. * * Contains a signature and the keyid uniquely identifying the key used * to generate the signature. * * Provide a `fromJSON` method to create a Signature from a JSON object. */ export declare class Signature { readonly keyID: string; readonly sig: string; constructor(options: SignatureOptions); toJSON(): JSONObject; static fromJSON(data: JSONObject): Signature; }
Version data entries
36 entries across 36 versions & 2 rubygems