Type alias ContextConditionPath2Json

ContextConditionPath2Json: {
    flags: string;
    path: string;
    type: "path2";
}

JSON representation of ContextConditionPath2 (RegExp path)

Type declaration

Example

{ type: "path2", path: "/api/([\\w-]+)", flags: "i" }

Example

{ type: "path2", path: "/api/([\\w-]+)" }

See

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp

Generated using TypeDoc