UNPKG

maplibre-gl

Version:

BSD licensed community fork of mapbox-gl, a WebGL interactive maps library

12 lines (10 loc) 259 B
class ExpressionParsingError extends Error { key: string; message: string; constructor(key: string, message: string) { super(message); this.message = message; this.key = key; } } export default ExpressionParsingError;