1.0.6 • Published 4 months ago

@jawg/types v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

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>;
}