Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

skava / @skava/ui   js

Repository URL to install this package:

Version: 4.2.0-a11y.0 

/ globals.d.ts

/**
 * @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>
  }
}