UNPKG

289 BTypeScriptView Raw
1/**
2 * @throws {TypeError} If `x` or `y` is a `number` or they're different types.
3 */
4declare function SameValueNonNumber(
5 x: string | boolean | symbol | object | null | undefined,
6 y: string | boolean | symbol | object | null | undefined,
7): boolean;
8export = SameValueNonNumber;