4 lines
158 B
TypeScript
4 lines
158 B
TypeScript
export interface ISearchableIntegration<TResult extends { image?: string; name: string; link: string }> {
|
|
searchAsync(query: string): Promise<TResult[]>;
|
|
}
|