accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
17 lines (15 loc) • 338 B
text/typescript
import {
IStoryStateFrame,
} from '../../state/IStoryStateFrame';
import {
ISetStoryStateAware,
} from '../../interfaces/ISetStoryStateAware';
import {
ReactNode,
} from 'react';
export interface IGetStateOwnProps {
readonly children: (
currentState: IStoryStateFrame,
utilities: ISetStoryStateAware,
) => ReactNode;
}