Skip to content

Commit

Permalink
export from selectioninterface
Browse files Browse the repository at this point in the history
  • Loading branch information
interim17 committed Oct 10, 2023
1 parent d88001d commit c63b365
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
7 changes: 5 additions & 2 deletions src/simularium/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ export type {
TrajectoryFileInfo,
EncodedTypeMapping,
SimulariumFileFormat,
} from "./types";
export type {
SelectionStateInfo,
UIDisplayData,
SelectionEntry,
ColorChanges,
} from "./types";
export type { SelectionStateInfo, UIDisplayData } from "./SelectionInterface";
} from "./SelectionInterface";
export { ErrorLevel, FrontEndError } from "./FrontEndError";
export { NetMessageEnum } from "./WebsocketClient";
export { RemoteSimulator } from "./RemoteSimulator";
Expand Down
10 changes: 0 additions & 10 deletions src/simularium/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,3 @@ export interface PlotConfig {
metricsIdy?: number;
scatterPlotMode?: string;
}

export interface SelectionEntry {
name: string;
tags: string[];
}

export interface ColorChanges {
agents: SelectionEntry[];
color: string;
}

0 comments on commit c63b365

Please sign in to comment.