primevue-mirror/components/dynamicdialog/DynamicDialog.d.ts

27 lines
707 B
TypeScript
Raw Normal View History

2022-09-06 12:03:37 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export interface DynamicDialogProps {}
export declare type DynamicDialogEmits = {}
export interface DynamicDialogSlots {}
declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> { }
declare module '@vue/runtime-core' {
interface GlobalComponents {
DynamicDialog: GlobalComponentConstructor<DynamicDialog>
}
}
/**
*
* DynamicDialogs can be created dynamically with any component as the content using a DialogService.
*
* Demos:
*
* - [DynamicDialog](https://www.primefaces.org/primevue/showcase/#/dynamicdialog)
*
*/
export default DynamicDialog;