UNPKG

@progress/kendo-angular-dialog

Version:
21 lines (20 loc) 694 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { WindowPosition, WindowState } from "./window-types"; /** * @hidden */ export interface WindowOptions { width?: number; height?: number; minWidth: number; minHeight: number; top?: number; left?: number; position: WindowPosition; state: WindowState; draggable: boolean; resizable: boolean; }