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>
Optionalreturn
return(value?: undefined): IteratorResult<T, undefined>Parameters
Optionalvalue: undefined
Returns IteratorResult<T, undefined>
Optionalthrow
throw(e?: any): IteratorResult<T, undefined>Parameters
Optionale: any