accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
20 lines (17 loc) • 509 B
text/typescript
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;
}