@n7e/model
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

Model

Base model layer features.

Entities

class User extends Entity<string> {
    public constructor(id: string) {
        super(id);
    }
}

const user = new User(crypto.randomUUID());

await dataMapper.insert(user);

Repositories

...

Data Mappers

...

Services

...

Readme

Keywords

none

Package Sidebar

Install

npm i @n7e/model

Weekly Downloads

0

Version

0.2.0

License

MIT

Unpacked Size

17.6 kB

Total Files

23

Last publish

Collaborators

  • martin-n7e