function onEdit(e)
e... //I want auto completion
var range = e.range();
e.... //I want auto completion
}
How to force auto completion on a variable such as in onEdit, is there a way to explicitly specify what type e is for the purposes of auto completion?
- how to see what the datatype of e is.
- how to explicitly specify e is that datatype for auto completion in the google app script editor.