@@ -720,7 +720,7 @@ export interface Actions {
720720 setFieldSrc ( path : IdPath , fieldSrc : FieldSource ) : undefined ;
721721 setOperator ( path : IdPath , operator : string ) : undefined ;
722722 setValue ( path : IdPath , delta : number , value : RuleValueI , valueType : string ) : undefined ; // todo: try to support RuleValue
723- setFuncValue ( path : IdPath , delta : number , parentFuncs : string [ ] , argKey : string | null , value : SimpleValue , valueType : string | "!valueSrc" ) : undefined ;
723+ setFuncValue ( path : IdPath , delta : number , parentFuncs : Array < [ string , string ] > , argKey : string | null , value : SimpleValue , valueType : string | "!valueSrc" ) : undefined ;
724724 setValueSrc ( path : IdPath , delta : number , valueSrc : ValueSource ) : undefined ;
725725 setOperatorOption ( path : IdPath , name : string , value : SimpleValue ) : undefined ;
726726 moveItem ( fromPath : IdPath , toPath : IdPath , placement : Placement ) : undefined ;
@@ -757,7 +757,7 @@ export interface TreeActions {
757757 setValue ( config : Config , path : IdPath , delta : number , value : RuleValueI , valueType : string ) : InputAction ; // todo: try to support RuleValue
758758 setValueSrc ( config : Config , path : IdPath , delta : number , valueSrc : ValueSource ) : InputAction ;
759759 setOperatorOption ( config : Config , path : IdPath , name : string , value : SimpleValue ) : InputAction ;
760- setFuncValue ( config : Config , path : IdPath , delta : number , parentFuncs : string [ ] , argKey : string | null , value : SimpleValue , valueType : string | "!valueSrc" ) : InputAction ;
760+ setFuncValue ( config : Config , path : IdPath , delta : number , parentFuncs : Array < [ string , string ] > , argKey : string | null , value : SimpleValue , valueType : string | "!valueSrc" ) : InputAction ;
761761 } ;
762762}
763763
0 commit comments