fix(package): call the correct export for closeInputDialog

This commit is contained in:
Luke
2023-09-28 11:49:20 +02:00
parent 9a40e6b519
commit 4ba5880d40

View File

@@ -42,4 +42,4 @@ type inputDialog = (
) => Promise<Array<string | number | boolean> | undefined>; ) => Promise<Array<string | number | boolean> | undefined>;
export const inputDialog: inputDialog = async (heading, rows) => await exports.ox_lib.inputDialog(heading, rows); export const inputDialog: inputDialog = async (heading, rows) => await exports.ox_lib.inputDialog(heading, rows);
export const closeInputDialog = () => exports.ox_lib.inputDialog(); export const closeInputDialog = () => exports.ox_lib.closeInputDialog();