On this page

Interface StylePropertyMapReadOnlyIterator<T>

interface StylePropertyMapReadOnlyIterator<T> {
    "[dispose]"(): void;
    "[iterator]"(): StylePropertyMapReadOnlyIterator<T>;
    next(...__namedParameters: [] | [unknown]): IteratorResult<T, undefined>;
    return?(value?: undefined): IteratorResult<T, undefined>;
    throw?(e?: any): IteratorResult<T, undefined>;
}

Type Parameters

  • T

Hierarchy

Index

Methods

  • Returns void

  • Parameters

    • ...__namedParameters: [] | [unknown]

    Returns IteratorResult<T, undefined>

  • Parameters

    • Optionalvalue: undefined

    Returns IteratorResult<T, undefined>

Was this helpful?
SDK JS
Reference
StylePropertyMapReadOnlyIterator