accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
13 lines (11 loc) • 359 B
text/typescript
import {
ReactNodeWithoutNullOrUndefined,
} from '../../typeAliases/ReactNodeWithoutNullOrUndefined';
import {
IClassNameable,
} from '../../interfaces/IClassNameable';
export interface IDelayOwnProps extends IClassNameable {
readonly children: ReactNodeWithoutNullOrUndefined;
readonly timeout: number;
readonly renderWithZeroOpacity?: boolean;
}