mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 05:53:14 -08:00
13 lines
380 B
TypeScript
13 lines
380 B
TypeScript
/**
|
|
* Tries Notification.requestPermission, console warning instead of rejecting on error.
|
|
* @param callback Runs with the permission result on completion.
|
|
*/
|
|
export const requestNotificationPermission = async (
|
|
callback: NotificationPermissionCallback,
|
|
) => {
|
|
try {
|
|
callback(await Notification.requestPermission());
|
|
} catch (error) {
|
|
console.warn(error);
|
|
}
|
|
};
|