1+ "use strict" ;
2+
3+ Object . defineProperty ( exports , "__esModule" , {
4+ value : true
5+ } ) ;
6+ exports . toggleCyclicVoltaDensity = exports . setWorkWithMaxPeak = exports . setCylicVoltaRefFactor = exports . setCylicVoltaRef = exports . setCyclicVoltaAreaValue = exports . setCyclicVoltaAreaUnit = exports . selectRefPeaks = exports . selectPairPeak = exports . removeCylicVoltaPecker = exports . removeCylicVoltaPairPeak = exports . removeCylicVoltaMinPeak = exports . removeCylicVoltaMaxPeak = exports . addNewCylicVoltaPairPeak = exports . addCylicVoltaPecker = exports . addCylicVoltaMinPeak = exports . addCylicVoltaMaxPeak = void 0 ;
7+ var _action_type = require ( "../constants/action_type" ) ;
8+ const addNewCylicVoltaPairPeak = payload => ( {
9+ type : _action_type . CYCLIC_VOLTA_METRY . ADD_PAIR_PEAKS ,
10+ payload
11+ } ) ;
12+ exports . addNewCylicVoltaPairPeak = addNewCylicVoltaPairPeak ;
13+ const removeCylicVoltaPairPeak = payload => ( {
14+ type : _action_type . CYCLIC_VOLTA_METRY . REMOVE_PAIR_PEAKS ,
15+ payload
16+ } ) ;
17+ exports . removeCylicVoltaPairPeak = removeCylicVoltaPairPeak ;
18+ const addCylicVoltaMaxPeak = payload => ( {
19+ type : _action_type . CYCLIC_VOLTA_METRY . ADD_MAX_PEAK ,
20+ payload
21+ } ) ;
22+ exports . addCylicVoltaMaxPeak = addCylicVoltaMaxPeak ;
23+ const removeCylicVoltaMaxPeak = payload => ( {
24+ type : _action_type . CYCLIC_VOLTA_METRY . REMOVE_MAX_PEAK ,
25+ payload
26+ } ) ;
27+ exports . removeCylicVoltaMaxPeak = removeCylicVoltaMaxPeak ;
28+ const addCylicVoltaMinPeak = payload => ( {
29+ type : _action_type . CYCLIC_VOLTA_METRY . ADD_MIN_PEAK ,
30+ payload
31+ } ) ;
32+ exports . addCylicVoltaMinPeak = addCylicVoltaMinPeak ;
33+ const removeCylicVoltaMinPeak = payload => ( {
34+ type : _action_type . CYCLIC_VOLTA_METRY . REMOVE_MIN_PEAK ,
35+ payload
36+ } ) ;
37+ exports . removeCylicVoltaMinPeak = removeCylicVoltaMinPeak ;
38+ const setWorkWithMaxPeak = payload => ( {
39+ type : _action_type . CYCLIC_VOLTA_METRY . WORK_WITH_MAX_PEAK ,
40+ payload
41+ } ) ;
42+ exports . setWorkWithMaxPeak = setWorkWithMaxPeak ;
43+ const selectPairPeak = payload => ( {
44+ type : _action_type . CYCLIC_VOLTA_METRY . SELECT_PAIR_PEAK ,
45+ payload
46+ } ) ;
47+ exports . selectPairPeak = selectPairPeak ;
48+ const addCylicVoltaPecker = payload => ( {
49+ type : _action_type . CYCLIC_VOLTA_METRY . ADD_PECKER ,
50+ payload
51+ } ) ;
52+ exports . addCylicVoltaPecker = addCylicVoltaPecker ;
53+ const removeCylicVoltaPecker = payload => ( {
54+ type : _action_type . CYCLIC_VOLTA_METRY . REMOVE_PECKER ,
55+ payload
56+ } ) ;
57+ exports . removeCylicVoltaPecker = removeCylicVoltaPecker ;
58+ const selectRefPeaks = payload => ( {
59+ type : _action_type . CYCLIC_VOLTA_METRY . SELECT_REF_PEAK ,
60+ payload
61+ } ) ;
62+ exports . selectRefPeaks = selectRefPeaks ;
63+ const setCylicVoltaRefFactor = payload => ( {
64+ type : _action_type . CYCLIC_VOLTA_METRY . SET_FACTOR ,
65+ payload
66+ } ) ;
67+ exports . setCylicVoltaRefFactor = setCylicVoltaRefFactor ;
68+ const setCylicVoltaRef = payload => ( {
69+ type : _action_type . CYCLIC_VOLTA_METRY . SET_REF ,
70+ payload
71+ } ) ;
72+ exports . setCylicVoltaRef = setCylicVoltaRef ;
73+ const setCyclicVoltaAreaValue = value => ( {
74+ type : _action_type . CYCLIC_VOLTA_METRY . SET_AREA_VALUE ,
75+ payload : {
76+ value
77+ }
78+ } ) ;
79+ exports . setCyclicVoltaAreaValue = setCyclicVoltaAreaValue ;
80+ const setCyclicVoltaAreaUnit = unit => ( {
81+ type : _action_type . CYCLIC_VOLTA_METRY . SET_AREA_UNIT ,
82+ payload : {
83+ unit
84+ }
85+ } ) ;
86+ exports . setCyclicVoltaAreaUnit = setCyclicVoltaAreaUnit ;
87+ const toggleCyclicVoltaDensity = payload => ( {
88+ type : _action_type . CYCLIC_VOLTA_METRY . TOGGLE_DENSITY ,
89+ payload
90+ } ) ;
91+ exports . toggleCyclicVoltaDensity = toggleCyclicVoltaDensity ;
0 commit comments