/** * Tests if two types are exactly the same. * Taken from https://github.com/Microsoft/TypeScript/issues/27024#issuecomment-421529650 * (Apache Version 2.0, January 2004) */ export type Equals = (() => T extends X ? 1 : 2) extends () => T extends Y ? 1 : 2 ? true : false; export declare function assert(): void; export declare function assertFalse(): void; //# sourceMappingURL=type_testing.d.ts.map