// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. /** This module is browser compatible. */ import { Direction } from "./bs_node.ts"; import { RedBlackNode } from "./red_black_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 RedBlackNode instead */ export { RedBlackNode as RBNode };