import { IEditorTabRegistration } from "@omnia/fx-models"; export interface IAppEditorTabRegistration extends IEditorTabRegistration { validateAll?: () => Promise; save?: () => Promise; } export interface AppEditorTabValidationResult { valid: boolean; tabId: string; } export interface AppEditorTabSaveResult { succeed: boolean; errorMessage?: string; tabId: string; }