export class VerifyPDFError extends Error { /** * Enum for VerifyPDFError types * @readonly * @enum {string} */ static readonly Type: { TYPE_UNKNOWN: string; TYPE_INPUT: string; TYPE_PARSE: string; TYPE_BYTE_RANGE: string; VERIFY_SIGNATURE: string; UNSUPPORTED_SUBFILTER: string; }; /** * @param {string} msg * @param {Type} type */ constructor(msg: string, type?: string); type: string; } export default VerifyPDFError;