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

17 lines
373 B
TypeScript
Raw Normal View History

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