Fix for test

This commit is contained in:
Ragg
2018-02-28 02:29:55 +09:00
parent d08933b8f6
commit e85eb95d78
2 changed files with 2 additions and 4 deletions

View File

@@ -1,7 +1,6 @@
// TypeScript Version: 2.3
/// <reference types="node" />
import { Dispatcher, DispatcherInterface, DispatcherContext, Store } from 'dispatchr';
import { Dispatcher, DispatcherInterface, DispatcherContext, Store } from '../index';
import { EventEmitter } from 'events';
declare class BaseStore<S = {}> extends EventEmitter implements Store<S> {

View File

@@ -1,5 +1,4 @@
// TypeScript Version: 2.3
import { StoreClass, Store } from 'dispatchr';
import { StoreClass, Store } from '../index';
interface StoreOptions {
initialize?(): void;