UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

25 lines (23 loc) 790 B
/** * DevExtreme (ui/popup.d.ts) * Version: 18.2.18 * Build date: Tue Oct 18 2022 * * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import DevExpress from '../bundles/dx.all'; declare global { interface JQuery { dxPopup(): JQuery; dxPopup(options: "instance"): DevExpress.ui.dxPopup; dxPopup(options: string): any; dxPopup(options: string, ...params: any[]): any; dxPopup(options: DevExpress.ui.dxPopupOptions): JQuery; } } export default DevExpress.ui.dxPopup; export type Options = DevExpress.ui.dxPopupOptions; /** @deprecated use Options instead */ export type IOptions = DevExpress.ui.dxPopupOptions; export type ToolbarItem = DevExpress.ui.dxPopupToolbarItem;