devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
25 lines (23 loc) • 875 B
TypeScript
/*!
* devextreme-vue
* Version: 25.1.6
* Build date: Mon Oct 13 2025
*
* Copyright (c) 2012 - 2025 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 { ComponentPublicInstance, Slot } from 'vue';
interface IEventBusHolder {
eventBus: {
fire: () => void;
add: (handler: () => void) => void;
remove: (handler: () => void) => void;
};
}
declare function discover(component: ComponentPublicInstance): Record<string, Slot>;
declare function mountTemplate(getSlot: () => Slot, parent: ComponentPublicInstance, data: any, name: string, placeholder: Element): ComponentPublicInstance;
export { mountTemplate, discover, IEventBusHolder, };