forked from LeenkxTeam/LNXSDK
18 lines
293 B
TypeScript
18 lines
293 B
TypeScript
|
import * as path from 'path';
|
||
|
import {Html5Exporter} from './Html5Exporter';
|
||
|
import {Options} from '../Options';
|
||
|
|
||
|
export class NodeExporter extends Html5Exporter {
|
||
|
constructor(options: Options) {
|
||
|
super(options);
|
||
|
}
|
||
|
|
||
|
backend(): string {
|
||
|
return 'Node';
|
||
|
}
|
||
|
|
||
|
isNode() {
|
||
|
return true;
|
||
|
}
|
||
|
}
|