@ckeditor/ckeditor5-ui
Version:
The UI framework and standard UI library of CKEditor 5.
28 lines (27 loc) • 723 B
TypeScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module ui/dialog/dialogcontentview
*/
import { View } from '../view.js';
import { type ViewCollection } from '../viewcollection.js';
import type { Locale } from '@ckeditor/ckeditor5-utils';
/**
* A dialog content view class.
*/
export declare class DialogContentView extends View {
/**
* A collection of content items.
*/
readonly children: ViewCollection;
/**
* @inheritDoc
*/
constructor(locale: Locale | undefined);
/**
* Removes all the child views.
*/
reset(): void;
}