type RenderContext.RenderCallback
Type definition for the callback that’s used for asynchronous rendering.
type RenderCallback<TElement = unknown> = (
output?: Output<TElement>,
afterRender?: (out?: Output<TElement>) => void,
) => RenderCallback<TElement>;
Related
class RenderContext abstract
An abstract class that supports global view rendering, part of the global application context.
