Shared TypeScript definitions for Jawg Maps projects
See all exported types at https://jawg.github.io/types.ts
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>;
}