typedux
Version:
Slightly adjusted Redux (awesome by default) for TS
13 lines (12 loc) • 363 B
TypeScript
import { State } from "../../reducers/State";
import { MockKey } from "./MockConstants";
/**
* Mock leaf state, dumb test state with test props
*/
export declare class MockLeafState implements State<typeof MockKey> {
static readonly Key: typeof MockKey;
readonly type: typeof MockKey;
str1: string;
str2: string;
constructor(props?: any);
}