chore: remove file-level eslint-disable directives in PresentationVerify.ts
Remove 4 file-level eslint-disable directives and fix each type violation with proper type annotations and runtime validation: - Replace any with unknown in method signatures for type safety - Use Record<string, unknown> casts at data boundary points - Add runtime type narrowing (typeof checks, instanceof checks) - Use inline as type assertions where values originate from external APIs (credential.id, credential.issuer, etc.) - Fix catch block error handling: use err instanceof Error instead of (err as Error).message pattern - Fix SDJWT issuer type: convert string to DID via DID.fromString() - Fix template literal type errors with explicit string casts Signed-off-by: A-Chronicle <[email protected]>