From a6fd9fd39423a2ec3d8a20f932bab0f30105bf41 Mon Sep 17 00:00:00 2001 From: Megan Riel-Mehan Date: Mon, 4 Dec 2023 16:04:22 -0800 Subject: [PATCH] Fix/add timedata to exports (#353) * update trajectory info to version 3 * use type in test viewer * add TimeData to public type exports --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 57a5b24b..ff1d8308 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,6 +10,7 @@ export type { NetConnectionParams, } from "./simularium"; export type { ISimulariumFile } from "./simularium/ISimulariumFile"; +export type { TimeData } from "./viewport"; export { RenderStyle } from "./viewport"; export { SimulariumController } from "./controller";