Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import Certificate from './certificate';
import VerificationSubstep from './domain/verifier/valueObjects/VerificationSubstep';
if (typeof globalThis.setImmediate === 'undefined') {
globalThis.setImmediate = ((fn: (...args: any[]) => void, ...args: any[]) => {
return setTimeout(fn, 0, ...args);
}) as any;
}
export { Certificate, VerificationSubstep };
export { VERIFICATION_STATUSES } from './constants/verificationStatuses';
export * as STEPS from './domain/verifier/entities/verificationSteps';
export { getSupportedLanguages } from './domain/i18n/useCases';
export { BLOCKCHAINS, CERTIFICATE_VERSIONS } from './constants';
export { SignatureImage } from './models';
export { retrieveBlockcertsVersion } from './parsers';
export { isVerifiablePresentation } from './models/BlockcertsV3';
export { CONTENT_MEDIA_TYPES } from './models/contentMediaTypes';
|