UNPKG

459 BPlain TextView 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 { ProviderInterface$Emitted, ProviderInterface$EmitCb } from '../types';
6import { MockState } from './types';
7
8export default function on (self: MockState, type: ProviderInterface$Emitted, sub: ProviderInterface$EmitCb): void {
9 self.emitter.on(type, sub);
10}