UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

20 lines (17 loc) 509 B
import { IButtonProps, } from '../Button/IButtonProps'; import { MaybeReadonlyArray, } from '../../typeAliases/MaybeReadonlyArray'; import { ReactNodeWithoutNullOrUndefined, } from '../../typeAliases/ReactNodeWithoutNullOrUndefined'; export interface ICyclerOwnProps extends IButtonProps { readonly children: MaybeReadonlyArray<ReactNodeWithoutNullOrUndefined>; readonly callback?: ( current: ReactNodeWithoutNullOrUndefined, index?: number, ) => void; readonly startIndex?: number; }