@cytoscape-web/types
Advanced tools
Comparing version 1.1.12 to 1.1.13
@@ -7,1 +7,11 @@ /** | ||
export * from './LayoutStoreModel'; | ||
export * from './MessageStoreModel'; | ||
export * from './NetworkStoreModel'; | ||
export * from './NetworkSummaryStoreModel'; | ||
export * from './OpaqueAspectStoreModel'; | ||
export * from './RendererStoreModel'; | ||
export * from './TableStoreModel'; | ||
export * from './UiStateStoreModel'; | ||
export * from './ViewModelStoreModel'; | ||
export * from './VisualStyleStoreModel'; | ||
export * from './WorkspaceStoreModel'; |
@@ -23,1 +23,11 @@ "use strict"; | ||
__exportStar(require("./LayoutStoreModel"), exports); | ||
__exportStar(require("./MessageStoreModel"), exports); | ||
__exportStar(require("./NetworkStoreModel"), exports); | ||
__exportStar(require("./NetworkSummaryStoreModel"), exports); | ||
__exportStar(require("./OpaqueAspectStoreModel"), exports); | ||
__exportStar(require("./RendererStoreModel"), exports); | ||
__exportStar(require("./TableStoreModel"), exports); | ||
__exportStar(require("./UiStateStoreModel"), exports); | ||
__exportStar(require("./ViewModelStoreModel"), exports); | ||
__exportStar(require("./VisualStyleStoreModel"), exports); | ||
__exportStar(require("./WorkspaceStoreModel"), exports); |
@@ -20,3 +20,3 @@ import { IdType } from '../IdType'; | ||
*/ | ||
export interface UpdateActions { | ||
export interface NetworkUpdateActions { | ||
addNode: (networkId: IdType, nodeId: IdType) => void; | ||
@@ -37,2 +37,2 @@ addNodes: (networkId: IdType, nodeIds: IdType[]) => void; | ||
} | ||
export type NetworkStore = NetworkState & NetworkActions & UpdateActions; | ||
export type NetworkStore = NetworkState & NetworkActions & NetworkUpdateActions; |
@@ -117,3 +117,3 @@ import { IdType } from '../IdType'; | ||
} | ||
export interface UpdateActions { | ||
export interface ViewModelUpdateActions { | ||
addNodeView: (networkId: IdType, nodeView: NodeView) => void; | ||
@@ -126,2 +126,2 @@ addNodeViews: (networkId: IdType, nodeIds: NodeView[]) => void; | ||
} | ||
export type ViewModelStore = ViewModelState & ViewModelAction & UpdateActions; | ||
export type ViewModelStore = ViewModelState & ViewModelAction & ViewModelUpdateActions; |
{ | ||
"name": "@cytoscape-web/types", | ||
"version": "1.1.12", | ||
"version": "1.1.13", | ||
"description": "Type definitions for Cytoscape Web data models", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
210471
5465