UNPKG

assertthat

Version:
14 lines (12 loc) 371 B
interface StringAssertions { containing: (expected: string) => void; startingWith: (expected: string) => void; endingWith: (expected: string) => void; containingAllOf: (expected: Iterable<string>) => void; containingAnyOf: (expected: Iterable<string>) => void; empty: () => void; matching: (expected: RegExp) => void; } export type { StringAssertions };