(text: string)
| 104 | } |
| 105 | |
| 106 | export function createTextSelector(text: string): TextSelector { |
| 107 | return { |
| 108 | $$typeof: TEXT_TYPE, |
| 109 | value: text, |
| 110 | }; |
| 111 | } |
| 112 | |
| 113 | export function createTestNameSelector(id: string): TestNameSelector { |
| 114 | return { |
no outgoing calls