terriajs
Version:
Geospatial data visualization platform.
21 lines (18 loc) • 305 B
text/typescript
enum TableColumnType {
longitude,
latitude,
height,
time,
scalar,
enum,
region,
text,
address,
hidden
}
export function stringToTableColumnType(
s: string
): TableColumnType | undefined {
return TableColumnType[<keyof typeof TableColumnType>s];
}
export default TableColumnType;