UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

10 lines (9 loc) 276 B
import { Nullable } from "../../base-types"; export interface IIterator<T = unknown> { current: Nullable<T>; canMoveNext(): boolean; canMovePrevious(): boolean; moveNextAsync(): Promise<boolean>; movePreviousAsync(): Promise<boolean>; reset(): void; }