/** * Make an assertion that `actual` and `expected` are strictly equal, using * {@linkcode Object.is} for equality comparison. If not, then throw. * * @example Usage * ```ts ignore * import { assertStrictEquals } from "@std/assert"; * * const a = {}; * const b = a; * assertStrictEquals(a, b); // Doesn't throw * * const c = {}; * const d = {}; * assertStrictEquals(c, d); // Throws * ``` * * @typeParam T The type of the expected value. * @param actual The actual value to compare. * @param expected The expected value to compare. * @param msg The optional message to display if the assertion fails. */ export declare function assertStrictEquals(actual: unknown, expected: T, msg?: string): asserts actual is T; //# sourceMappingURL=strict_equals.d.ts.map