boundfetch
    Preparing search index...

    Type Alias BoundFetchResult<T>

    BoundFetchResult:
        | { data: T; error: null; success: true }
        | { data: null; error: BoundFetchError; success: false }

    Result-mode envelope returned by endpoint calls when mode: 'result'.

    Type Parameters

    • T