Files
Mckay Wrigley 4f92751ee3 Google fixes (#415)
* push

* fixes
2023-04-04 10:09:28 -06:00

20 lines
341 B
TypeScript

import { ChatBody, Message } from './chat';
export interface GoogleBody extends ChatBody {
googleAPIKey: string;
googleCSEId: string;
}
export interface GoogleResponse {
message: Message;
}
export interface GoogleSource {
title: string;
link: string;
displayLink: string;
snippet: string;
image: string;
text: string;
}