(defaultVal: T)
| 29 | }); |
| 30 | |
| 31 | export const makeNumericProp = <T>(defaultVal: T) => ({ |
| 32 | type: numericProp, |
| 33 | default: defaultVal, |
| 34 | }); |
| 35 | |
| 36 | export const makeStringProp = <T>(defaultVal: T) => ({ |
| 37 | type: String as unknown as PropType<T>, |
no outgoing calls
no test coverage detected
searching dependent graphs…