export class MutationErrorEvent<D = unknown, V = VariablesOf<D>> extends MutationEvent<D, V> {
  public static type = 'mutation-error' as const;
  public declare type: 'mutation-error';

  constructor(element: ApolloMutationElement<D, V>) {