(
instance: Instance,
type: string,
props: Props,
)
| 941 | }, |
| 942 | |
| 943 | cloneHiddenInstance( |
| 944 | instance: Instance, |
| 945 | type: string, |
| 946 | props: Props, |
| 947 | ): Instance { |
| 948 | const clone = cloneInstance(instance, type, props, props, true, null); |
| 949 | clone.hidden = true; |
| 950 | return clone; |
| 951 | }, |
| 952 | |
| 953 | cloneHiddenTextInstance( |
| 954 | instance: TextInstance, |
nothing calls this directly
no test coverage detected