@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
17 lines • 426 B
TypeScript
export declare enum ProcessingState {
idle = 0,
processing = 1
}
export interface ICarouselState {
/**
* Keeps information about the current index of the displayed element.
*/
currentIndex: number;
/**
* Specifies internal state of the control.
*/
processingState: ProcessingState;
slideRight?: boolean;
previousIndex?: number;
}
//# sourceMappingURL=ICarouselState.d.ts.map