import * as plugins from './plugins.js'; import { ServiceWorker } from './classes.serviceworker.js'; /** * Taskmanager * should use times allocated by browser */ export class TaskManager { public serviceworkerRef: ServiceWorker; constructor(serviceWorkerRefArg: ServiceWorker) { this.serviceworkerRef = serviceWorkerRefArg; } }