(
name: string,
applyFn: VariantFn<'functional'>,
{ compounds, order }: { compounds?: Compounds; order?: number } = {},
)
| 111 | } |
| 112 | |
| 113 | functional( |
| 114 | name: string, |
| 115 | applyFn: VariantFn<'functional'>, |
| 116 | { compounds, order }: { compounds?: Compounds; order?: number } = {}, |
| 117 | ) { |
| 118 | this.set(name, { |
| 119 | kind: 'functional', |
| 120 | applyFn, |
| 121 | compoundsWith: Compounds.Never, |
| 122 | compounds: compounds ?? Compounds.StyleRules, |
| 123 | order, |
| 124 | }) |
| 125 | } |
| 126 | |
| 127 | compound( |
| 128 | name: string, |
no test coverage detected