UNPKG

ngx-thread

Version:

Implements multi-threading in Angular using Web Worker

21 lines (18 loc) 311 B
import {NgModule} from "@angular/core"; import {CommonModule} from "@angular/common"; import {ThreadService} from "./ThreadService"; @NgModule({ imports: [ CommonModule, ], providers: [ ThreadService ], declarations: [], exports: [ //ThreadService ] }) export class ThreadModule { }