aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/ViewBoxInterface.ts
diff options
context:
space:
mode:
authoreleanor-park <eleanor_park@brown.edu>2025-01-06 18:21:02 -0500
committereleanor-park <eleanor_park@brown.edu>2025-01-06 18:21:02 -0500
commitf273c97121300eb9b242f7272cc1cc56c396ca8b (patch)
treed0086e411c206ee86637ed38a5a6eacb4f67ef8f /src/client/views/ViewBoxInterface.ts
parent1d62d867621b293c41ff8488ca5a3bd6010723d5 (diff)
started a previous images display
Diffstat (limited to 'src/client/views/ViewBoxInterface.ts')
-rw-r--r--src/client/views/ViewBoxInterface.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/ViewBoxInterface.ts b/src/client/views/ViewBoxInterface.ts
index df08f2564..a66a20cf6 100644
--- a/src/client/views/ViewBoxInterface.ts
+++ b/src/client/views/ViewBoxInterface.ts
@@ -60,5 +60,6 @@ export abstract class ViewBoxInterface<P> extends ObservableReactComponent<React
search?: (str: string, bwd?: boolean, clear?: boolean) => boolean;
dontRegisterView?: () => boolean; // KeyValueBox's don't want to register their views
isUnstyledView?: () => boolean; // SchemaView and KeyValue are unstyled -- not titles, no opacity, no animations
- componentAIView?: (top: number) => JSX.Element;
+ componentAIView?: () => JSX.Element;
+ componentAIViewHistory?: () => JSX.Element;
}