Skip to content

Commit

Permalink
fix type exports
Browse files Browse the repository at this point in the history
  • Loading branch information
interim17 committed Oct 10, 2023
1 parent 18e0547 commit d88001d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/simularium/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export type {
TrajectoryFileInfo,
EncodedTypeMapping,
SimulariumFileFormat,
SelectionEntry,
ColorChanges,
} from "./types";
export type { SelectionStateInfo, UIDisplayData } from "./SelectionInterface";
export { ErrorLevel, FrontEndError } from "./FrontEndError";
Expand Down
10 changes: 10 additions & 0 deletions src/simularium/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,13 @@ 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 d88001d

Please sign in to comment.