UNPKG

377 BTypeScriptView Raw
1/**
2 * OpenLayers version.
3 */
4export const VERSION: string;
5export function abstract(): any;
6/**
7 * Gets a unique ID for an object. This mutates the object so that further calls
8 * with the same object as a parameter returns the same value. Unique IDs are generated
9 * as a strictly increasing sequence. Adapted from goog.getUid.
10 */
11export function getUid(obj: any): string;