Files
ox_lib/web/src/features/dev/debug/notification.ts

32 lines
702 B
TypeScript
Raw Normal View History

2022-08-27 15:58:36 +02:00
import { CustomNotificationProps, NotificationProps } from '../../notifications/NotificationWrapper';
import { debugData } from '../../../utils/debugData';
export const debugNotification = () => {
debugData<NotificationProps>([
{
2022-08-27 15:58:36 +02:00
action: 'notify',
data: {
2022-08-27 15:58:36 +02:00
description: 'Dunak is nerd',
title: 'Dunak',
id: 1,
},
},
]);
};
export const debugCustomNotification = () => {
debugData<CustomNotificationProps>([
{
2022-08-27 15:58:36 +02:00
action: 'customNotify',
data: {
2022-08-27 15:58:36 +02:00
description: 'Dunak is nerd',
icon: 'basket-shopping',
style: {
2022-08-27 15:58:36 +02:00
backgroundColor: '#2D3748',
color: 'white',
},
},
},
]);
};