// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. export function channel() { throw new Error("not implemented"); } export function hasSubscribers() { throw new Error("not implemented"); } export function Channel() { throw new Error("not implemented"); } export default { channel, Channel, hasSubscribers };