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

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