UNPKG

196 BTypeScriptView Raw
1import { EmptyMatcher } from "./empty-matcher";
2export declare class StringMatcher extends EmptyMatcher<string> {
3 toMatch(regex: RegExp): void;
4 toContain(expectedContent: string): void;
5}