File

src/windowRef.service.ts

Extends

GlobalRef

Properties

nativeGlobal
nativeGlobal: MyGlobal
export interface MyGlobal {

}

export abstract class GlobalRef {
  abstract get nativeGlobal(): MyGlobal;
}

export class BrowserGlobalRef extends GlobalRef {
  get nativeGlobal(): MyGlobal {
  	return window as MyGlobal;
  }
}

results matching ""

    No results matching ""