Skip to content

Commit 1d508c5

Browse files
committed
Add the config option in the documentation
1 parent 483277c commit 1d508c5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/source/developers/developing_extensions/extension-providing-chat.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,10 @@ interface IConfig {
189189
* Whether to enable or not the code toolbar.
190190
*/
191191
enableCodeToolbar?: boolean;
192+
/**
193+
* Whether to display deleted messages.
194+
*/
195+
showDeleted?: boolean;
192196
}
193197
```
194198

packages/jupyter-chat/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export interface IConfig {
5353
*/
5454
sendTypingNotification?: boolean;
5555
/**
56-
* Whether to display deleted messages or not
56+
* Whether to display deleted messages.
5757
*/
5858
showDeleted?: boolean;
5959
}

0 commit comments

Comments
 (0)