import { MoralisCoreError } from '../Error'; export declare const UnreachableError: MoralisCoreError; /** * Typesafe check, to make sure that code never reaches a certain point. * Can be used as an exhaustive check in swtich/if-else statements * * When used properly with Typescript, this code should never reach, as it is typed as 'never' * * If the code does reach this assertion an UnreachableError is thrown */ export declare const assertUnreachable: (x: never) => never; //# sourceMappingURL=assertUnreachable.d.ts.map