class PresentMgr { constructor() { } init() { setTimeout(this.start.bind(this), 1000 * 3); } async start() { } } module.exports = new PresentMgr();