mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 15:36:02 +01:00
fix(package): input dialog options param (#622)
This commit is contained in:
@@ -158,6 +158,6 @@ type inputDialog = (
|
|||||||
allowCancel?: boolean;
|
allowCancel?: boolean;
|
||||||
}
|
}
|
||||||
) => 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, options) => await exports.ox_lib.inputDialog(heading, rows, options);
|
||||||
|
|
||||||
export const closeInputDialog = () => exports.ox_lib.closeInputDialog();
|
export const closeInputDialog = () => exports.ox_lib.closeInputDialog();
|
||||||
|
|||||||
Reference in New Issue
Block a user