dependabot[bot] on main
chore(deps): bump is-my-json-va… Merge pull request #144 from Si… (compare)
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
chore(deps): bump is-my-json-va… (compare)
dependabot[bot] on main
chore(deps): bump qs from 6.3.2… Merge pull request #143 from Si… (compare)
dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
chore(deps): bump qs from 6.3.2… (compare)
dependabot[bot] on npm_and_yarn
I'm a but confused about how should I use iridium models
suppose I have following declaration
export class Storage extends Core implements IStorage{
Accounts: Model<AccountDocument, Account> = new Model<AccountDocument, Account>(this, Account);
}
how now I can instantiate new account object?
this.storage.Accounts.create()
or I can use new Account
?