How can I document this object using JSDoc?
/** @todo What @type should I use? @readonly */ export default Object.freeze({ cannotPlay() { ... }, });
I don't know which type should I use for this.
@type {object<Function>} ??
@type {object<Function>}