bundle.d.ts 410 B

12345
  1. import * as sigstore from '@sigstore/bundle';
  2. import type { Signature } from '../signer';
  3. import type { Artifact } from './base';
  4. export declare function toMessageSignatureBundle(artifact: Artifact, signature: Signature): sigstore.BundleWithMessageSignature;
  5. export declare function toDSSEBundle(artifact: Required<Artifact>, signature: Signature, certificateChain?: boolean): sigstore.BundleWithDsseEnvelope;