0.2.0 • Published 5 months ago

@n7e/model v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

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

...

0.2.0

5 months ago

0.1.0

5 months ago