UNPKG

accelerator-core

Version:

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

26 lines (24 loc) 632 B
import { IClassNameable, } from '../../interfaces/IClassNameable'; import { IPassagesMapAware, } from '../../interfaces/IPassagesMapAware'; import { IPluginsAware, } from '../../interfaces/IPluginsAware'; import { MaybeReadonlyArray, } from '../../typeAliases/MaybeReadonlyArray'; export interface ICyclingLinkInternalOwnProps extends IClassNameable, IPassagesMapAware, IPluginsAware { readonly children: MaybeReadonlyArray<string>; readonly dontCallbackOnMount?: boolean; readonly dontSetVariableOnMount?: boolean; readonly variableToSet?: string; readonly callback?: (current?: string) => void; }