XYO Platform SDK - v3.10.6
    Preparing search index...

    Interface Sentinel<TIn, TOut>

    interface Sentinel<
        TIn extends Payload = Payload,
        TOut extends Payload = Payload,
    > {
        report: (payloads?: TIn[]) => Promisable<TOut[]>;
        reportQuery: (
            payloads?: TIn[],
            account?: AccountInstance,
        ) => Promisable<ModuleQueryResult<TOut>>;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    report: (payloads?: TIn[]) => Promisable<TOut[]>
    reportQuery: (
        payloads?: TIn[],
        account?: AccountInstance,
    ) => Promisable<ModuleQueryResult<TOut>>