Trilium Frontend API
    Preparing search index...

    Interface SourceBufferList

    The SourceBufferList interface represents a simple container list for multiple SourceBuffer objects.

    MDN Reference

    interface SourceBufferList {
        length: number;
        onaddsourcebuffer: (this: SourceBufferList, ev: Event) => any;
        onremovesourcebuffer: (this: SourceBufferList, ev: Event) => any;
        "[iterator]"(): ArrayIterator<SourceBuffer>;
        addEventListener<K extends keyof SourceBufferListEventMap>(
            type: K,
            listener: (this: SourceBufferList, ev: SourceBufferListEventMap[K]) => any,
            options?: boolean | AddEventListenerOptions,
        ): void;
        addEventListener(
            type: string,
            listener: EventListenerOrEventListenerObject,
            options?: boolean | AddEventListenerOptions,
        ): void;
        dispatchEvent(event: Event): boolean;
        removeEventListener<K extends keyof SourceBufferListEventMap>(
            type: K,
            listener: (this: SourceBufferList, ev: SourceBufferListEventMap[K]) => any,
            options?: boolean | EventListenerOptions,
        ): void;
        removeEventListener(
            type: string,
            listener: EventListenerOrEventListenerObject,
            options?: boolean | EventListenerOptions,
        ): void;
        [index: number]: SourceBuffer;
    }

    Hierarchy

    • EventTarget
      • SourceBufferList

    Indexable

    Index

    Properties

    length: number

    The length read-only property of the SourceBufferList interface returns the number of SourceBuffer objects in the list.

    MDN Reference

    onaddsourcebuffer: (this: SourceBufferList, ev: Event) => any
    onremovesourcebuffer: (this: SourceBufferList, ev: Event) => any

    Methods

    • The dispatchEvent() method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent().

      MDN Reference

      Parameters

      • event: Event

      Returns boolean

    • The removeEventListener() method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target. The event listener to be removed is identified using a combination of the event type, the event listener function itself, and various optional options that may affect the matching process; see Matching event listeners for removal.

      MDN Reference

      Type Parameters

      Parameters

      Returns void

    • The removeEventListener() method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target. The event listener to be removed is identified using a combination of the event type, the event listener function itself, and various optional options that may affect the matching process; see Matching event listeners for removal.

      MDN Reference

      Parameters

      Returns void