export function assertNever(value: never, message?: string): never { throw new Error(message ?? `Unexpected value: ${JSON.stringify(value)}`); }