UNPKG

254 BTypeScriptView Raw
1declare global {
2 namespace jest {
3 interface Matchers<R> {
4 /**
5 * Normalizes whitespace and performs string comparisons
6 */
7 toBeSimilarStringTo(expected: string): R;
8 }
9 }
10}
11export {};