ligo/tools/webide/packages/client/src/redux/example.ts

18 lines
518 B
TypeScript
Raw Normal View History

import { CompileState } from './compile';
import { DeployState } from './deploy';
import { DryRunState } from './dry-run';
import { EditorState } from './editor';
import { EvaluateFunctionState } from './evaluate-function';
import { EvaluateValueState } from './evaluate-value';
export interface ExampleState {
id: string;
name: string;
editor: EditorState;
compile: CompileState;
dryRun: DryRunState;
deploy: DeployState;
evaluateFunction: EvaluateFunctionState;
evaluateValue: EvaluateValueState;
}