diff options
author | eleanor-park <eleanor_park@brown.edu> | 2025-01-05 23:47:18 -0500 |
---|---|---|
committer | eleanor-park <eleanor_park@brown.edu> | 2025-01-05 23:47:18 -0500 |
commit | 1d62d867621b293c41ff8488ca5a3bd6010723d5 (patch) | |
tree | 0abc9d9ae2869775cfcc294838c93577fbc0fef9 /src/client/views/ViewBoxInterface.ts | |
parent | 6e7cb570f9bad527cd4772bb5c715dd588fb77df (diff) |
added AI image editor
Diffstat (limited to 'src/client/views/ViewBoxInterface.ts')
-rw-r--r-- | src/client/views/ViewBoxInterface.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/ViewBoxInterface.ts b/src/client/views/ViewBoxInterface.ts index b7980d74e..df08f2564 100644 --- a/src/client/views/ViewBoxInterface.ts +++ b/src/client/views/ViewBoxInterface.ts @@ -60,4 +60,5 @@ 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; } |