StylePropertyMapReadOnlyIterator
interface StylePropertyMapReadOnlyIterator<T> {
"[iterator]"(): StylePropertyMapReadOnlyIterator<T>;
next(...__namedParameters: [] | [unknown]): IteratorResult<T, undefined>;
return(value?: undefined): IteratorResult<T, undefined>;
throw(e?: any): IteratorResult<T, undefined>;
}
"[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
- IteratorObject<T, BuiltinIteratorReturn, unknown>
- StylePropertyMapReadOnlyIterator
Index
Methods
Methods
[iterator]
"[iterator]"(): StylePropertyMapReadOnlyIterator<T>
Returns StylePropertyMapReadOnlyIterator<T>
next
next(...__namedParameters: [] | [unknown]): IteratorResult<T, undefined>
Parameters
…__namedParameters: [] | [unknown]
Returns IteratorResult<T, undefined>
Optional
return
return(value?: undefined): IteratorResult<T, undefined>
Parameters
Optional
value: undefined
Returns IteratorResult<T, undefined>
Optional
throw
throw(e?: any): IteratorResult<T, undefined>
Parameters
Optional
e: any