Describe the bug
in interface/input/inputDialog
docs saying that options are optional? and I believe the source code as well, but I think u. forget to add the optional modifier
type inputDialog = (heading: string, rows: string[] | RowInput[], options: <--- here {
allowCancel?: boolean;
}) => Promise<Array<string | number | boolean> | undefined>;
Describe the bug
in interface/input/inputDialog
docs saying that options are optional? and I believe the source code as well, but I think u. forget to add the optional modifier