8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import { DocumentNode } from 'graphql';
|
|
|
|
export type SearchConfigType = {
|
|
query: DocumentNode;
|
|
template: (searchInput: string) => any;
|
|
resultMapper: (data: any) => any;
|
|
};
|