UNPKG

fastlion-amis

Version:

一种MIS页面生成工具

23 lines (22 loc) 1.27 kB
import { Instance, SnapshotIn } from 'mobx-state-tree'; export declare const StoreNode: import("mobx-state-tree").IModelType<{ id: import("mobx-state-tree").ISimpleType<string>; path: import("mobx-state-tree").IType<string | undefined, string, string>; storeType: import("mobx-state-tree").ISimpleType<string>; disposed: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>; parentId: import("mobx-state-tree").IType<string | undefined, string, string>; childrenIds: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>; }, { readonly parentStore: any; readonly __: any; readonly hasChildren: boolean; readonly children: any[]; } & { onChildStoreDispose(child: any): void; syncProps(props: any, prevProps: any, list?: Array<string>): void; dispose: (callback?: (() => void) | undefined) => void; addChildId: (id: string) => void; removeChildId: (id: string) => void; }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>; export declare type IStoreNode = Instance<typeof StoreNode>; export declare type SIStoreNode = SnapshotIn<typeof StoreNode>;