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", "name": "data",
"version": "0.0.29", "version": "0.0.30",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve", "start": "ng serve",

View File

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

View File

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