12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import { MxassemblyType } from '../Mxassembly';
|
|
import { MxFunType } from '../MxFun';
|
|
import Store from './Store';
|
|
export declare type stateType = {
|
|
[x: string]: any;
|
|
MxFun: MxFunType | null;
|
|
Mxassembly: MxassemblyType | null;
|
|
isCreateDrawObj: boolean;
|
|
};
|
|
declare const store: Store<stateType>;
|
|
export default store;
|