function render (callback?: () = > void): string
The argument to the ts function
the parameter of the ts function means that the return value of callback is the return value of the function. The return value of the function is voidfunction render (callback?:void): string
means that the return value of callback is void
am I right to understand this?