Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / globals.d.ts
Size: Mime:
/**
 * @tutorial https://basarat.gitbooks.io/typescript/docs/project/globals.html
 * @example https://www.typescriptlang.org/docs/handbook/declaration-files/by-example.html
 * @api https://www.typescriptlang.org/docs/handbook/declaration-files/templates/global-d-ts.html
 * @see https://forum.ionicframework.com/t/google-maps-typescript-error-cannot-find-name-google-discussion/49990
 */
/* prettier-ignore */
// tslint:disable
// eslint-disable-next-line
/// <reference types="googlemaps" />

declare global {
  interface Window {
    google: typeof google
    GoogleMaps: typeof google.maps
    googleMapNode: Element
    onGoogleApisLoad: () => Promise<any>
  }
}