@awhere/api
Version:
The awesome aWhere API for JavaScript.
8 lines (7 loc) • 340 B
TypeScript
import { DatabaseItemType } from '@awhere/interfaces';
import StructuredCollection from '../_BaseClass/StructuredCollection';
export default class Table extends StructuredCollection {
get type(): import("@awhere/interfaces").ItemTypeChildren.databaseItem;
get subtype(): DatabaseItemType;
constructor(props?: Partial<Table>);
}