Files
kiss-flixel/feedback-server/externs/express/RouterOptions.hx

20 lines
390 B
Haxe
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 childs value take precedence.
**/
@:optional
var mergeParams : Bool;
/**
Enable strict routing.
**/
@:optional
var strict : Bool;
};