UNPKG

@awhere/api

Version:

The awesome aWhere API for JavaScript.

9 lines (8 loc) 429 B
import { WebMapItemType } from '@awhere/interfaces'; import ItemBase from '../../Item/ItemBase'; export default class WebMapItem extends ItemBase { get type(): import("@awhere/interfaces").ItemTypeChildren.webMapItem; protected _subtype: WebMapItemType | keyof typeof WebMapItemType; get subtype(): WebMapItemType | keyof typeof WebMapItemType; set subtype(value: WebMapItemType | keyof typeof WebMapItemType); }