20 lines
390 B
Haxe
20 lines
390 B
Haxe
package express;
|
||
|
||
typedef RouterOptions = {
|
||
/**
|
||
Enable case sensitivity.
|
||
**/
|
||
@:optional
|
||
var caseSensitive : Bool;
|
||
/**
|
||
Preserve the req.params values from the parent router.
|
||
If the parent and the child have conflicting param names, the child’s value take precedence.
|
||
**/
|
||
@:optional
|
||
var mergeParams : Bool;
|
||
/**
|
||
Enable strict routing.
|
||
**/
|
||
@:optional
|
||
var strict : Bool;
|
||
}; |