/**
* Compare two types to see if they are loosely equal to each other without
* checking structural integrity.
*/exporttypeIsLooselyEqual<A, B> = [
A
] extends [B] ? [
B
] extends [A] ? true : false : false;
//# sourceMappingURL=IsLooselyEqual.d.ts.map