UNPKG

mapillary-js

Version:

WebGL JavaScript library for displaying street level imagery from mapillary.com

17 lines (13 loc) 344 B
export type FilterExpression = (FilterOperator | string | FilterValue | FilterOperation)[]; export type FilterOperation = [FilterOperator, string, FilterValue]; export type FilterOperator = "==" | "!=" | ">" | ">=" | "<" | "<=" | "in" | "!in" | "all"; export type FilterValue = boolean | number | string;