// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. /** This module is browser compatible. */ import { BinarySearchNode, Direction } from "./binary_search_node.ts"; /** @deprecated use Direction instead */ export type { Direction as direction }; export type { Direction }; /** @deprecated use BinarySearchNode instead */ export { BinarySearchNode as BSNode };