UNPKG

mongodb-chatbot-ui

Version:

UI React components for the MongoDB Chatbot Framework

10 lines (9 loc) 240 B
export type MockFetchResultArgs<T> = { ok?: boolean; status?: number; json: T; }; /** Mock the next global.fetch result. */ export declare function mockNextFetchResult<T>({ ok, status, json, }: MockFetchResultArgs<T>): void;