Open
Description
Hello,
I have the following type definition
/**
* The database type.
* @typedef {Object} DB
* @property {String} folder - The path of the folder where the data files are stored.
* @property {Object<String, Schema>} schemas - The schemas on the database.
*/
The type DB
is shown on the documentation but the properties folder
and schemas
are shown without types. Is there any way to show types for these like shown for function arguments for exemple ?
Thank you,
Amine