accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
12 lines (10 loc) • 317 B
text/typescript
import {
IClassNameable,
} from '../../interfaces/IClassNameable';
import {
ReactNodeWithoutNullOrUndefined,
} from '../../typeAliases/ReactNodeWithoutNullOrUndefined';
export interface IFadeInOwnProps extends IClassNameable {
readonly children: ReactNodeWithoutNullOrUndefined;
readonly duration: number;
}