Function redo

  • Returns a redo action object for an NgUndo reducer action.

    Function

    Name

    redo

    Example

    
    

    Example

    @Dispatch
    public redo() {
    return redo('test');
    // Returns { type: '&_NG-UNDO', payload: { type: 'REDO', propertyName: 'test' } }
    }

    Parameters

    • propertyName: string

      The propertyName used to identify actions related to the NgUndo reducer.

    Returns any

    An action object with a type and payload property for redoing a property state change.

Generated using TypeDoc