/** * Make an assertion that actual includes expected. If not * then throw. * * @example Usage * ```ts ignore * import { assertStringIncludes } from "@std/assert"; * * assertStringIncludes("Hello", "ello"); // Doesn't throw * assertStringIncludes("Hello", "world"); // Throws * ``` * * @param actual The actual string to check for inclusion. * @param expected The expected string to check for inclusion. * @param msg The optional message to display if the assertion fails. */ export declare function assertStringIncludes(actual: string, expected: string, msg?: string): void; //# sourceMappingURL=string_includes.d.ts.map