We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9c15dd commit b35fa39Copy full SHA for b35fa39
nativescript-angular/platform-common.ts
@@ -52,7 +52,7 @@ if ((<any>global).___TS_UNUSED) {
52
}
53
54
export interface HmrOptions {
55
- moduleTypeFactory?: () => Type<any> | NgModuleFactory<any>
+ moduleTypeFactory?: () => Type<any> | NgModuleFactory<any>;
56
livesyncCallback: (bootstrapPlatfrom: () => void) => void;
57
58
@@ -240,7 +240,7 @@ export class NativeScriptPlatformRef extends PlatformRef {
240
bootstrapLog("Angular livesync started.");
241
242
243
- const lastModuleRef = lastBootstrappedModule ? lastBootstrappedModule.get() : null
+ const lastModuleRef = lastBootstrappedModule ? lastBootstrappedModule.get() : null;
244
onBeforeLivesync.next(lastModuleRef);
245
if (lastModuleRef) {
246
lastModuleRef.destroy();
0 commit comments