@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
10 lines (9 loc) • 336 B
TypeScript
import React from "react";
export interface UnsavedChangesDialogProps {
open: boolean;
body?: React.ReactNode;
title?: string;
handleOk: () => void;
handleCancel: () => void;
}
export declare function UnsavedChangesDialog({ open, handleOk, handleCancel, body, title }: UnsavedChangesDialogProps): React.JSX.Element;