import { LayerNode } from "./layer-node" export const tiers = LayerNode.tiers(["location", "global"]) export type GlobalNode = LayerNode.Node export type LocationNode = LayerNode.Node export const makeGlobalNode = tiers.make("global") export const makeLocationNode = tiers.make("location") export * as ScopedNode from "./scoped-node"