devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
22 lines (20 loc) • 726 B
TypeScript
/*!
* devextreme-vue
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file in the root of the project for details.
*
* https://github.com/DevExpress/devextreme-vue
*/
import IVue from "vue";
import { ScopedSlot } from "vue/types/vnode";
interface IEventBusHolder {
eventBus: IVue;
}
declare function discover(component: IVue): Record<string, ScopedSlot>;
declare function mountTemplate(getSlot: () => ScopedSlot, parent: IVue, data: any, name: string, placeholder: Element): IVue;
export { mountTemplate, discover, IEventBusHolder };