@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Type Alias MaybePromise<T>

    MaybePromise: T | Promise<T>

    A value that is either T directly or a Promise<T>.

    Used in callback signatures that support both synchronous and asynchronous returns (e.g. instructions), so adopters can return either a plain string or an async function without separate overloads.

    Type Parameters

    • T