@ones-editor/editor 2.9.8-beta.4 → 2.9.8-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -551,6 +551,7 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
551
551
  readonly settingsProvider: OnesEditorSettingsProvider;
552
552
  version: string;
553
553
  readonly: boolean;
554
+ destroyed: boolean;
554
555
  addCustom: <T extends OnesEditorCustom>(name: string, creator: OnesEditorCustomCreator<T>) => T;
555
556
  getCustom: <T extends OnesEditorCustom>(name: string) => T;
556
557
  replaceCustom: <T extends OnesEditorCustom>(name: string, newCustom: T) => T;