import { ErrorVerificationFragment, InvalidVerificationFragment, SkippedVerificationFragment, ValidVerificationFragment, } from "../../../types/core"; export type OpenAttestationHashValidFragment = ValidVerificationFragment; export type OpenAttestationHashInvalidFragment = InvalidVerificationFragment; export type OpenAttestationHashErrorFragment = ErrorVerificationFragment; export type OpenAttestationHashVerificationFragment = | OpenAttestationHashValidFragment | OpenAttestationHashInvalidFragment | OpenAttestationHashErrorFragment | SkippedVerificationFragment;