Files
mermaid-live-editor/src/lib/util/notify.ts
T
2021-05-17 12:10:20 +05:30

8 lines
155 B
TypeScript

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