Files
ox_lib/web/src/features/dev/debug/alert.ts
T

17 lines
373 B
TypeScript
Raw Normal View History

2022-08-27 15:58:36 +02:00
import { debugData } from '../../../utils/debugData';
import { AlertProps } from '../../dialog/AlertDialog';
2022-08-27 15:40:41 +02:00
export const debugAlert = () => {
debugData<AlertProps>([
{
2022-08-27 15:58:36 +02:00
action: 'sendAlert',
2022-08-27 15:40:41 +02:00
data: {
2022-08-27 15:58:36 +02:00
header: 'Hello there',
content: 'General kenobi \n Markdown works',
2022-08-27 15:40:41 +02:00
centered: true,
cancel: true,
},
},
]);
};