c119c44c13
When this is merged https://gitlab.com/ligolang/ligo-web-ide/ will be marked as deprecated. This MR does not hook up the webide build to the main CI. The CI integration will come in a subsequent MR for the sake of making review easier.
18 lines
518 B
TypeScript
18 lines
518 B
TypeScript
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;
|
|
}
|