Skip to content

Commit b35fa39

Browse files
author
Alexander Vakrilov
committed
style: added missing semi column
1 parent e9c15dd commit b35fa39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: nativescript-angular/platform-common.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ if ((<any>global).___TS_UNUSED) {
5252
}
5353

5454
export interface HmrOptions {
55-
moduleTypeFactory?: () => Type<any> | NgModuleFactory<any>
55+
moduleTypeFactory?: () => Type<any> | NgModuleFactory<any>;
5656
livesyncCallback: (bootstrapPlatfrom: () => void) => void;
5757
}
5858

@@ -240,7 +240,7 @@ export class NativeScriptPlatformRef extends PlatformRef {
240240
bootstrapLog("Angular livesync started.");
241241
}
242242

243-
const lastModuleRef = lastBootstrappedModule ? lastBootstrappedModule.get() : null
243+
const lastModuleRef = lastBootstrappedModule ? lastBootstrappedModule.get() : null;
244244
onBeforeLivesync.next(lastModuleRef);
245245
if (lastModuleRef) {
246246
lastModuleRef.destroy();

0 commit comments

Comments
 (0)