forked from LeenkxTeam/LNXSDK
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
|
import {Html5Exporter} from './Html5Exporter';
|
||
|
import {Options} from '../Options';
|
||
|
|
||
|
export class DebugHtml5Exporter extends Html5Exporter {
|
||
|
constructor(options: Options) {
|
||
|
super(options);
|
||
|
this.isDebug = true;
|
||
|
}
|
||
|
}
|