@awhere/api
Version:
The awesome aWhere API for JavaScript.
18 lines (17 loc) • 604 B
TypeScript
import { DatabaseItemType } from '@awhere/interfaces';
import StructuredCollection from '../_BaseClass/StructuredCollection';
export default class FeatureCollection extends StructuredCollection {
static systemSchema: {
geometry: {
name: string;
type: string;
hidden: boolean;
deletable: boolean;
readonly: boolean;
editable: boolean;
};
};
get type(): import("@awhere/interfaces").ItemTypeChildren.databaseItem;
get subtype(): DatabaseItemType;
constructor(props?: Partial<FeatureCollection>);
}