6 lines
252 B
TypeScript
6 lines
252 B
TypeScript
|
import { Environment, build } from './environment.type';
|
||
|
import { ElectronNativeService } from '@ucap-webmessenger/native-electron';
|
||
|
|
||
|
export const environment: Environment = build(true);
|
||
|
environment.modules.native.serviceClass = ElectronNativeService;
|