Stone.js API
    Preparing search index...

    Raw response options carrying the deferred render effect.

    The view layer contributes render from a response middleware; the adapter calls it once the kernel has resolved the outgoing response. Without a view layer the render is absent and the adapter simply returns nothing, which is the headless case.

    interface RawReactNativeResponseOptions {
        render?: () => unknown;
        [k: string | number | symbol]: unknown;
    }

    Hierarchy

    • RawResponseOptions
      • RawReactNativeResponseOptions

    Indexable

    • [k: string | number | symbol]: unknown
    Index
    render?: () => unknown