@orfeas126/box-ui-elements
Version:
Box UI Elements
24 lines (23 loc) • 784 B
TypeScript
/// <reference types="jest" />
import { QuestionType } from '@box/box-ai-content-answers';
export declare const mockCurrentUser: {
id: string;
name: string;
};
export declare const mockFile: {
id: string;
name: string;
extension: string;
};
export declare const mockQuestionsNoAnswer: QuestionType[];
export declare const mockQuestionsWithAnswer: QuestionType[];
export declare const mockQuestionsWithError: QuestionType[];
export declare const mockQuestionsWithAnswerAndNoAnswer: QuestionType[];
export declare const mockApi: {
getIntelligenceAPI: jest.Mock<any, any, any>;
getUsersAPI: jest.Mock<any, any, any>;
};
export declare const mockApiReturnError: {
getIntelligenceAPI: jest.Mock<any, any, any>;
getUsersAPI: jest.Mock<any, any, any>;
};