resolve command with extra params.

This commit is contained in:
David Lebee 2021-09-09 12:32:44 -04:00
parent f701524822
commit 7affdde75b
3 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "data",
"version": "0.0.29",
"version": "0.0.30",
"scripts": {
"ng": "ng",
"start": "ng serve",

View File

@ -1,6 +1,6 @@
{
"name": "@poweredsoft/data",
"version": "0.0.35",
"version": "0.0.36",
"peerDependencies": {
"rxjs": "^6.5.3"
}

View File

@ -1,4 +1,5 @@
export interface IResolveCommandModelEvent<TModel> {
command: string;
model: TModel;
params?: any;
}