prague-fluent
Advanced tools
Comparing version 0.17.7 to 0.17.8
@@ -31,6 +31,6 @@ import { Observable } from 'rxjs'; | ||
constructor(mapActionToRouter: (context: CONTEXT) => Partial<MapTemplateActionToRouter<TEMPLATES>>); | ||
route<ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]>(action: ACTION, args: ARGS, source?: SOURCE, score?: number): any; | ||
route<ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]>(action: ACTION, args: ARGS, score?: number): any; | ||
router<ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]>(action: ACTION, args: ARGS, source?: SOURCE, score?: number): any; | ||
router<ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]>(action: ACTION, args: ARGS, score?: number): any; | ||
route<ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]>(action: ACTION, args: ARGS, source?: SOURCE, score?: number): TemplateRoute<ACTION, ARGS>; | ||
route<ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]>(action: ACTION, args?: ARGS, score?: number): TemplateRoute<ACTION, ARGS>; | ||
router<ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]>(action: ACTION, args?: ARGS, source?: SOURCE, score?: number): Router; | ||
router<ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]>(action: ACTION, args?: ARGS, score?: number): Router; | ||
map(route: TemplateRoute<keyof TEMPLATES, TEMPLATES[keyof TEMPLATES]>, context?: CONTEXT): TemplateRoute<keyof TEMPLATES, TEMPLATES[keyof TEMPLATES]> | Observable<Route<any>>; | ||
@@ -37,0 +37,0 @@ } |
{ | ||
"name": "prague-fluent", | ||
"version": "0.17.7", | ||
"version": "0.17.8", | ||
"description": "fluent API for Prague", | ||
@@ -5,0 +5,0 @@ "main": "dist/fluent.js", |
@@ -112,9 +112,9 @@ import { Observable } from 'rxjs'; | ||
score?: number | ||
); | ||
): TemplateRoute<ACTION, ARGS>; | ||
route <ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]> ( | ||
action: ACTION, | ||
args: ARGS, | ||
args?: ARGS, | ||
score?: number | ||
); | ||
): TemplateRoute<ACTION, ARGS>; | ||
@@ -131,16 +131,16 @@ route <ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]> ( | ||
action: ACTION, | ||
args: ARGS, | ||
args?: ARGS, | ||
source?: SOURCE, | ||
score?: number | ||
); | ||
): Router; | ||
router <ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]> ( | ||
action: ACTION, | ||
args: ARGS, | ||
args?: ARGS, | ||
score?: number | ||
); | ||
): Router; | ||
router <ACTION extends keyof TEMPLATES, ARGS extends TEMPLATES[ACTION]> ( | ||
action: ACTION, | ||
args: ARGS, | ||
args?: ARGS, | ||
... rest | ||
@@ -147,0 +147,0 @@ ) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
64691