gnablib
Version:
A lean, zero dependency library to provide a useful base for your project.
9 lines (8 loc) • 304 B
TypeScript
/*! Copyright 2023-2024 the gnablib contributors MPL-1.1 */
import { IMatchDetail } from "./IMatchDetail.js";
import type { WindowStr } from "../WindowStr.js";
export interface IMatchResult {
get fail(): boolean;
get remain(): WindowStr | undefined;
get result(): IMatchDetail | undefined;
}