adminjs
Version:
Admin panel for apps written in node.js
25 lines (19 loc) • 502 B
text/typescript
import type { ModalProps } from '@adminjs/design-system'
import { SHOW_MODAL, HIDE_MODAL } from '../store/index.js'
export interface ModalData {
modalProps: ModalProps;
type?: 'alert' | 'confirm';
resourceId?: string;
confirmAction?: () => void;
}
export type ModalFunctions = {
openModal: (data: ModalData) => void
closeModal: () => void
}
export type ShowModalResponse = {
type: typeof SHOW_MODAL
data: ModalData;
}
export type HideModalResponse = {
type: typeof HIDE_MODAL;
}