If I obtain a JSFoundset using database.getFoundSet():
var customerFoundset = databaseManager.getFoundSet('mysolution', 'customer');
and then refer to properties of the foundset in code:
if (customerFoundset.myproperty = 'xyz')
… how do I annotate with JSDoc to stop warnings about myproperty being undefined for type JSFoundset ?