@jawg/types

Shared TypeScript definitions for Jawg Maps projects


Keywords
api, typescript, maps, geocoder, geocoder-library, jawg, pelias, typescript-definitions
License
MIT
Install
npm install @jawg/types@1.0.6

Documentation

types.ts

Shared TypeScript definitions for Jawg Maps projects

npm version Run lint and test Publish GitHub Pages Release NPM Package License

Usage

See all exported types at https://jawg.github.io/types.ts

Example

Perfect usage in @jawg/js-loader index.d.ts

import { JawgPlaces } from '@jawg/types';

interface Options {
  accessToken: string;
}

export default class JawgJSLoader {
  constructor(options: Options);
  loadJawgPlaces(version?: string): Promise<typeof JawgPlaces>;
}