Skip to content

Instantly share code, notes, and snippets.

@arutnik
Created July 8, 2018 20:05
Show Gist options
  • Save arutnik/6be877640d259ad7fe59773954f199c7 to your computer and use it in GitHub Desktop.
Save arutnik/6be877640d259ad7fe59773954f199c7 to your computer and use it in GitHub Desktop.
SEO-SPA: Abstract DI Service
import { ElementRef } from '@angular/core';
export abstract class ElementFocusService {
/**
* Transfers focus to an element
* @param element
*/
public abstract focusElement(element: ElementRef)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment