10 lines
550 B
TypeScript
10 lines
550 B
TypeScript
|
export { ValidationError } from '@sigstore/bundle';
|
||
|
export { DEFAULT_FULCIO_URL, DEFAULT_REKOR_URL, InternalError, } from '@sigstore/sign';
|
||
|
export { TUFError } from '@sigstore/tuf';
|
||
|
export { PolicyError, VerificationError } from '@sigstore/verify';
|
||
|
export { attest, createVerifier, sign, verify } from './sigstore';
|
||
|
export type { SerializedBundle as Bundle } from '@sigstore/bundle';
|
||
|
export type { IdentityProvider } from '@sigstore/sign';
|
||
|
export type { SignOptions, VerifyOptions } from './config';
|
||
|
export type { BundleVerifier } from './sigstore';
|