index.d.ts 440 B

12345
  1. import { type PublicKey, type TrustedRoot } from '@sigstore/protobuf-specs';
  2. import type { KeyFinderFunc, TrustMaterial } from './trust.types';
  3. export { filterCertAuthorities, filterTLogAuthorities } from './filter';
  4. export type { CertAuthority, KeyFinderFunc, TLogAuthority, TrustMaterial, } from './trust.types';
  5. export declare function toTrustMaterial(root: TrustedRoot, keys?: Record<string, PublicKey> | KeyFinderFunc): TrustMaterial;