UNPKG

@ckeditor/ckeditor5-ui

Version:

The UI framework and standard UI library of CKEditor 5.

26 lines (25 loc) 589 B
/** * @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/spinner/spinnerview */ import { View } from '../view.js'; import '../../theme/components/spinner/spinner.css'; /** * The spinner view class. */ export declare class SpinnerView extends View { /** * Controls whether the spinner is visible. * * @observable * @default false */ isVisible: boolean; /** * @inheritDoc */ constructor(); }