UNPKG

accelerator-core

Version:

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

15 lines (13 loc) 417 B
import { IClassNameable, } from '../../interfaces/IClassNameable'; import { MaybeReadonlyArray, } from '../../typeAliases/MaybeReadonlyArray'; import { ReactNodeWithoutNullOrUndefined, } from '../../typeAliases/ReactNodeWithoutNullOrUndefined'; export interface ICombinationOwnProps extends IClassNameable { readonly children: MaybeReadonlyArray<ReactNodeWithoutNullOrUndefined>; readonly pick?: number; }