typescript-dotnet-core
Version:
A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.
15 lines (14 loc) • 639 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md
*/
import { Match, Regex } from "./RegularExpressions";
import IEnumerator from "../Collections/Enumeration/IEnumerator";
export declare class RegexMatchEnumerator {
private readonly _pattern;
constructor(pattern: string | RegExp | Regex);
matches(input: string): IEnumerator<Match>;
static matches(input: string, pattern: string | RegExp | Regex): IEnumerator<Match>;
}
declare const _default: typeof RegexMatchEnumerator.matches;
export default _default;