Skip to content

Commit 8ea0d1f

Browse files
committed
Add missing links to docstrings
1 parent 8aaf91e commit 8ea0d1f

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

packages/chatkit/types/index.d.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,11 @@ export type StartScreenPrompt = {
354354
label: string;
355355
/** Text inserted into the composer when the prompt is chosen. */
356356
prompt: string;
357-
/** Optional icon displayed with the prompt. */
357+
/**
358+
* Optional icon displayed with the prompt.
359+
*
360+
* @see {@link ChatKitIcon}
361+
*/
358362
icon?: ChatKitIcon;
359363
};
360364

@@ -446,7 +450,11 @@ export type ToolOption = {
446450
/** Label displayed in the tool menu */
447451
label: string;
448452

449-
/** Icon displayed next to the tool in the menu. */
453+
/**
454+
* Icon displayed next to the tool in the menu.
455+
*
456+
* @see {@link ChatKitIcon}
457+
*/
450458
icon: ChatKitIcon;
451459

452460
/** Optional label displayed in the button when the tool is selected. */
@@ -609,6 +617,8 @@ export type CustomApiConfig = {
609617

610618
/**
611619
* How attachments will be uploaded to your server. Required when attachments are enabled.
620+
*
621+
* @see {@link FileUploadStrategy}
612622
*/
613623
uploadStrategy?: FileUploadStrategy;
614624
};

0 commit comments

Comments
 (0)