vite-plugin-entry-shaking-debugger
Version:
Debugger for vite-plugin-entry-shaking
25 lines (22 loc) • 479 B
text/typescript
export type DialogProps = {
/** Dialog id. */
id?: string;
/** Dialog title. */
title?: string;
/** Dialog width. */
width?: string;
/** Dialog height. */
height?: string;
/** Should dialog content be removed its default padding? */
unpad?: boolean;
};
export type DialogEvents = {
/** Emitted when the dialog is closed. */
close: [];
};
export type DialogSlots = {
/** Dialog content. */
default(): any;
/** Dialog footer. */
footer(): any;
};