(
variablesStore: VariablesStore,
prop: string,
value: string,
rule: CSSStyleRule,
ignoredImgSelectors: string[],
isCancelled: () => boolean,
)
| 747 | } |
| 748 | |
| 749 | function getVariableModifier( |
| 750 | variablesStore: VariablesStore, |
| 751 | prop: string, |
| 752 | value: string, |
| 753 | rule: CSSStyleRule, |
| 754 | ignoredImgSelectors: string[], |
| 755 | isCancelled: () => boolean, |
| 756 | ): CSSVariableModifier { |
| 757 | return variablesStore.getModifierForVariable({ |
| 758 | varName: prop, |
| 759 | sourceValue: value, |
| 760 | rule, |
| 761 | ignoredImgSelectors, |
| 762 | isCancelled, |
| 763 | }); |
| 764 | } |
| 765 | |
| 766 | function getVariableDependantModifier( |
| 767 | variablesStore: VariablesStore, |
no test coverage detected