Files
mermaid-live-editor/src/lib/util/notify.ts
T
Sidharth Vinod 0ac606b8fb chore: Tabs -> Spaces
Github PR reviews will be formatted much better.
Inline with mermaid project.
2022-11-03 14:09:36 +05:30

8 lines
157 B
TypeScript

export const notify = (message: string): void => {
alert(message);
};
export const prompt = (message: string): boolean => {
return confirm(message);
};