@progress/kendo-angular-dialog
Version:
Dialog Package for Angular
27 lines (26 loc) • 873 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Defines the text of the labels that are shown within the Window.
* Used primarily for localization.
*/
export interface WindowMessages {
/**
* Specifies the title of the close button.
*/
closeTitle?: string;
/**
* Specifies the title of the restore button.
*/
restoreTitle?: string;
/**
* Specifies the title of the maximize button.
*/
maximizeTitle?: string;
/**
* Specifies the title of the minimize button.
*/
minimizeTitle?: string;
}