/** @extends {BaseCollection} */ export class UsersCollections extends BaseCollection<{ create: Partial> & { profile: Partial & Pick; }; update: Partial; get: User; list: CollectionList; }> { /** * @param {import('../cryptr').Cryptr} cryptr */ constructor(cryptr: import('../cryptr').Cryptr); /** * @param {string} email * @returns {Promise} */ getByEmail(email: string): Promise; } import { BaseCollection } from "./BaseCollection";