index.d.ts 550 B

123456789
  1. export { ValidationError } from '@sigstore/bundle';
  2. export { DEFAULT_FULCIO_URL, DEFAULT_REKOR_URL, InternalError, } from '@sigstore/sign';
  3. export { TUFError } from '@sigstore/tuf';
  4. export { PolicyError, VerificationError } from '@sigstore/verify';
  5. export { attest, createVerifier, sign, verify } from './sigstore';
  6. export type { SerializedBundle as Bundle } from '@sigstore/bundle';
  7. export type { IdentityProvider } from '@sigstore/sign';
  8. export type { SignOptions, VerifyOptions } from './config';
  9. export type { BundleVerifier } from './sigstore';