Skip to content

Instantly share code, notes, and snippets.

@GeoffMahugu
Last active February 27, 2019 06:00
Show Gist options
  • Save GeoffMahugu/b793f7cbac4cbfdb981c5ee6e07439b7 to your computer and use it in GitHub Desktop.
Save GeoffMahugu/b793f7cbac4cbfdb981c5ee6e07439b7 to your computer and use it in GitHub Desktop.
Angular Fire Auth Window Service
import { Injectable } from '@angular/core';
function _window(): any {
return window;
}
@Injectable()
export class WindowService {
constructor() { }
get nativeWindow(): any {
return _window();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment