Skip to content

Commit

Permalink
fix(package): input dialog options param (overextended#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrazzIe authored Jul 18, 2024
1 parent e9eebd6 commit 2b9f49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/client/resource/interface/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,6 @@ type inputDialog = (
allowCancel?: boolean;
}
) => 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();

0 comments on commit 2b9f49f

Please sign in to comment.