File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ export { Search } from "./search";
55export { Value } from "./value" ;
66export { FunctionExpressionType } from "./function" ;
77export type { FilterFunction } from "./function" ;
8+ export type { MatchFilterFunctionOptions } from "./match" ;
9+ export type { SearchFilterFunctionOptions } from "./search" ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export type MatchFilterFunctionOptions = {
2323 * The standard and default behavior is to silently return _false_ if a
2424 * pattern is invalid.
2525 *
26- * If `iRegexpCheck` is _true_ and `throwErrors` is _true_, a `IRegexpError`
26+ * If `iRegexpCheck` is _true_ and `throwErrors` is _true_, an `IRegexpError`
2727 * will be thrown.
2828 */
2929 iRegexpCheck ?: boolean ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export type SearchFilterFunctionOptions = {
2424 * The standard and default behavior is to silently return _false_ if a
2525 * pattern is invalid.
2626 *
27- * If `iRegexpCheck` is _true_ and `throwErrors` is _true_, a `IRegexpError`
27+ * If `iRegexpCheck` is _true_ and `throwErrors` is _true_, an `IRegexpError`
2828 * will be thrown.
2929 */
3030 iRegexpCheck ?: boolean ;
You can’t perform that action at this time.
0 commit comments