UNPKG

ng-refs

Version:

Practice better dependency injection of browser APIs within your Angular components and services.

10 lines 278 B
import { Injectable } from '@angular/core'; export class GetComputedStyleRef { native(elt, pseudoElt) { return getComputedStyle(elt, pseudoElt); } } GetComputedStyleRef.decorators = [ { type: Injectable } ]; //# sourceMappingURL=get-computed-style.ref.js.map