forked from LeenkxTeam/LNXSDK
14 lines
277 B
TypeScript
14 lines
277 B
TypeScript
|
import * as path from 'path';
|
||
|
import {Html5Exporter} from './Html5Exporter';
|
||
|
import {Options} from '../Options';
|
||
|
|
||
|
export class Html5WorkerExporter extends Html5Exporter {
|
||
|
constructor(options: Options) {
|
||
|
super(options);
|
||
|
}
|
||
|
|
||
|
backend(): string {
|
||
|
return 'HTML5-Worker';
|
||
|
}
|
||
|
}
|