(expression: string)
| 130 | }; |
| 131 | |
| 132 | export function selector(expression: string): SelectorTarget { |
| 133 | return { kind: 'selector', selector: expression }; |
| 134 | } |
| 135 | |
| 136 | export function ref(refInput: string, options: { fallbackLabel?: string } = {}): RefTarget { |
| 137 | return { |
no outgoing calls
no test coverage detected