UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

41 lines (36 loc) 1.06 kB
/** * DevExtreme (ui/notify.d.ts) * Version: 19.2.6 * Build date: Thu Jan 30 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ /** * @docid ui.notify * @static * @publicName notify(message,type,displayTime) * @param1 message:string * @param2 type:string|undefined * @param3 displayTime:integer|undefined * @module ui/notify * @export default * @prevFileNamespace DevExpress.ui * @public */ declare function notify(message: string, type?: string, displayTime?: number): void; /** * @docid ui.notify * @static * @publicName notify(options,type,displayTime) * @param1 options:object * @param2 type:string|undefined * @param3 displayTime:integer|undefined * @module ui/notify * @export default * @prevFileNamespace DevExpress.ui * @public */ declare function notify(options: any, type?: string, displayTime?: number): void; /** Warning! This type is used for internal purposes. Do not import it directly. */ export default notify;