wip: tests

This commit is contained in:
Torkel Ödegaard 2019-02-06 09:04:38 +01:00
parent fa32198831
commit 1fbdd02464
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
export { actionCreatorFactory, noPayloadActionCreatorFactory, ActionOf } from './actionCreatorFactory';
export { actionCreatorFactory, noPayloadActionCreatorFactory, ActionOf, ActionCreator } from './actionCreatorFactory';
export { reducerFactory } from './reducerFactory';

View File

@ -25,7 +25,7 @@ import { notifyApp } from 'app/core/actions';
import { StoreState, DashboardLoadingState, DashboardRouteInfo } from 'app/types';
import { DashboardModel, PanelModel } from 'app/features/dashboard/state';
interface Props {
export interface Props {
urlUid?: string;
urlSlug?: string;
urlType?: string;
@ -46,7 +46,7 @@ interface Props {
updateLocation: typeof updateLocation;
}
interface State {
export interface State {
isSettingsOpening: boolean;
isEditing: boolean;
isFullscreen: boolean;