@arl/leaflet-tracksymbol2
    Preparing search index...

    Interface UnderlyingDefaultSource<R>

    interface UnderlyingDefaultSource<R = any> {
        cancel?: UnderlyingSourceCancelCallback;
        pull?: (
            controller: ReadableStreamDefaultController<R>,
        ) => void | PromiseLike<void>;
        start?: (controller: ReadableStreamDefaultController<R>) => any;
        type?: undefined;
    }

    Type Parameters

    • R = any
    Index

    Properties

    pull?: (
        controller: ReadableStreamDefaultController<R>,
    ) => void | PromiseLike<void>
    start?: (controller: ReadableStreamDefaultController<R>) => any
    type?: undefined