UNPKG

@visulima/string

Version:

Functions for manipulating strings.

10 lines (7 loc) 277 B
import { ExpectationResult } from './utils.js'; interface CustomMatchers { toEqualAnsi: (expected: string) => ExpectationResult; } declare const toEqualAnsi: (actual: string, expected: string) => ExpectationResult; export { toEqualAnsi }; export type { CustomMatchers };