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

27 lines
697 B
TypeScript
Raw Normal View History

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