/** @extends {BaseCollection} */ export class OrganizationsCollections extends BaseCollection<{ create: Partial & Pick; update: Partial; get: Organization; list: CollectionList; }> { /** * @param {import('../cryptr').Cryptr} cryptr */ constructor(cryptr: import('../cryptr').Cryptr); } import { BaseCollection } from "./BaseCollection.js";