diff --git a/src/path/functions/index.ts b/src/path/functions/index.ts index 840be87..b3d60bb 100644 --- a/src/path/functions/index.ts +++ b/src/path/functions/index.ts @@ -5,3 +5,5 @@ export { Search } from "./search"; export { Value } from "./value"; export { FunctionExpressionType } from "./function"; export type { FilterFunction } from "./function"; +export type { MatchFilterFunctionOptions } from "./match"; +export type { SearchFilterFunctionOptions } from "./search"; diff --git a/src/path/functions/match.ts b/src/path/functions/match.ts index 7a289e1..3da338f 100644 --- a/src/path/functions/match.ts +++ b/src/path/functions/match.ts @@ -23,7 +23,7 @@ export type MatchFilterFunctionOptions = { * The standard and default behavior is to silently return _false_ if a * pattern is invalid. * - * If `iRegexpCheck` is _true_ and `throwErrors` is _true_, a `IRegexpError` + * If `iRegexpCheck` is _true_ and `throwErrors` is _true_, an `IRegexpError` * will be thrown. */ iRegexpCheck?: boolean; diff --git a/src/path/functions/search.ts b/src/path/functions/search.ts index bfd4091..9f44490 100644 --- a/src/path/functions/search.ts +++ b/src/path/functions/search.ts @@ -24,7 +24,7 @@ export type SearchFilterFunctionOptions = { * The standard and default behavior is to silently return _false_ if a * pattern is invalid. * - * If `iRegexpCheck` is _true_ and `throwErrors` is _true_, a `IRegexpError` + * If `iRegexpCheck` is _true_ and `throwErrors` is _true_, an `IRegexpError` * will be thrown. */ iRegexpCheck?: boolean;