10 lines
675 B
TypeScript
Executable file
10 lines
675 B
TypeScript
Executable file
export type { Bundle } from '@sigstore/bundle';
|
|
export { DSSEBundleBuilder, MessageSignatureBundleBuilder } from './bundler';
|
|
export type { Artifact, BundleBuilder, BundleBuilderOptions } from './bundler';
|
|
export { InternalError } from './error';
|
|
export { CIContextProvider } from './identity';
|
|
export type { IdentityProvider } from './identity';
|
|
export { DEFAULT_FULCIO_URL, FulcioSigner } from './signer';
|
|
export type { FulcioSignerOptions, Signature, Signer } from './signer';
|
|
export { DEFAULT_REKOR_URL, RekorWitness, TSAWitness } from './witness';
|
|
export type { RekorWitnessOptions, SignatureBundle, TSAWitnessOptions, VerificationMaterial, Witness, } from './witness';
|