UNPKG

hivest-js

Version:

A simple, fast and minimalist framework for Node.js that allows you to create modular applications with dependency injection using decorators

12 lines 365 B
export interface Company { id: string; domain: string; name: string; } export declare class CompanyRepoMemory { private companies; create(company: Company): Promise<Company>; get(id: string): Promise<Company | null>; update(id: string, data: Partial<Company>): Promise<Company | null>; } //# sourceMappingURL=company.repo.memory.d.ts.map