UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

12 lines (11 loc) 237 B
export class Timeout { seconds; callback; constructor(seconds = 2 * 60, callback) { this.seconds = seconds; this.callback = callback; } get milliseconds() { return this.seconds * 1000; } }