UNPKG

waterbase

Version:
8 lines (6 loc) 205 B
import Collection from '../helpers/Collection'; import Service from '../Service'; class Database extends Service { collection = (name: string) => new Collection(this.client, name); } export = Database;