// 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 (will be removed after 0.157.0) use Direction instead */ export type { Direction as direction }; export type { Direction }; /** @deprecated (will be removed after 0.157.0) use BinarySearchNode instead */ export { BinarySearchNode as BSNode };