UNPKG

379 BPlain TextView Raw
1import * as React from 'react';
2import { Subject } from 'rxjs';
3
4import { t } from './common';
5
6export { ILog } from '@platform/log';
7export * from '../src/types';
8
9export type ITestCommandProps = {
10 state$: Subject<ITestState>;
11 state: ITestState;
12 next(state: ITestState): void;
13};
14
15export type ITestState = {
16 el?: React.ReactNode;
17 tree?: t.ICommandShellTreeOptions;
18};