• Parameters

    • multObject: {
          propertyName: string;
          value: number;
      }

      The original multObject to be used.

      • propertyName: string
      • value: number
    • context: HookContext

    Returns Promise<{
        propertyName: string;
        value: number;
    }> | {
        propertyName: string;
        value: number;
    }

    The multObject to be used instead of the original multObject specified by the caller. Returning a rejected promise will block the operation and will return a rejected promise to the caller as well as trigger the onFailure() hook.

    A hook that is triggered before multiply() operation.