Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Licensed under the MIT License.
*/

import { Prompt } from './prompt';
import { QnAMakerPrompt } from './qnamakerPrompt';

/**
* The context associated with QnA. Used to mark if the qna response has related prompts.
Expand All @@ -16,5 +16,5 @@ export interface QnAResponseContext {
/**
* The prompts collection of related prompts.
*/
prompts: Prompt[];
prompts: QnAMakerPrompt[];
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
* Licensed under the MIT License.
*/
/**
* Prompt Object.
* QnAMaker Prompt Object.
*/
export interface Prompt {
export interface QnAMakerPrompt {

/**
* Display Order - index of the prompt - used in ordering of the prompts.
Expand Down