PATH:
opt
/
alt
/
alt-nodejs19
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
sigstore
/
dist
/
tlog
/// <reference types="node" /> import { SignatureMaterial } from '../types/signature'; import { Bundle, Envelope } from '../types/sigstore'; interface CreateEntryOptions { fetchOnConflict?: boolean; } export { Entry, EntryKind, HashedRekordKind } from './types'; export interface TLog { createMessageSignatureEntry: (digest: Buffer, sigMaterial: SignatureMaterial) => Promise<Bundle>; createDSSEEntry: (envelope: Envelope, sigMaterial: SignatureMaterial, options?: CreateEntryOptions) => Promise<Bundle>; } export interface TLogClientOptions { rekorBaseURL: string; } export declare class TLogClient implements TLog { private rekor; constructor(options: TLogClientOptions); createMessageSignatureEntry(digest: Buffer, sigMaterial: SignatureMaterial, options?: CreateEntryOptions): Promise<Bundle>; createDSSEEntry(envelope: Envelope, sigMaterial: SignatureMaterial, options?: CreateEntryOptions): Promise<Bundle>; private createEntry; }
[-] format.js
[open]
[+]
..
[-] format.d.ts
[open]
[+]
types
[-] index.js
[open]
[-] index.d.ts
[open]
[+]
verify