UNPKG

368 BTypeScriptView Raw
1// Copyright 2017-2018 @polkadot/api-provider authors & contributors
2// This software may be modified and distributed under the terms
3// of the ISC license. See the LICENSE file for details.
4
5import { Logger } from '@polkadot/util/types';
6import { RpcCoder } from '../coder/json/types';
7
8export type HttpState = {
9 coder: RpcCoder,
10 endpoint: string,
11 l: Logger
12};