import { IEditorCloseEvent } from './editor'; import { IEditorInput } from '../generated-model'; // copied from vs/workbench/common/editor/editorGroup.ts export interface EditorCloseEvent extends IEditorCloseEvent { editor: IEditorInput; } export interface ISerializedEditorInput { id: string; value: string; } export interface ISerializedEditorGroup { id: number; editors: ISerializedEditorInput[]; mru: number[]; preview?: number; }