/** * Copyright (c) 2020 Dorian Cortes, Gary Valverde * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ export { ContextProvider } from "./lib/context-provider"; export { contextConsumer } from "./lib/context-consumer"; export { createContext } from "./lib/context-creator"; export { consume } from './decorators/consume'; export * from './types/context';