accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
15 lines (13 loc) • 357 B
text/typescript
import {
IPassageProps,
} from '../../passages/IPassageProps';
import {
ComponentType,
ReactElement,
} from 'react';
export interface IAuthoringPassageContainerOwnProps {
readonly children: ReactElement;
readonly passageProps: IPassageProps;
readonly components?: Record<string, ComponentType<any>>;
readonly noBuiltInComponents?: boolean;
}