Files
twenty_crm/front/src/modules/search/interfaces/interface.ts
Charles Bochet 8a330b9746 Use Graphql types in FE and complete mappers removal (#348)
Fix Typescript build issues
2023-06-21 10:52:00 -07:00

8 lines
178 B
TypeScript

import { DocumentNode } from 'graphql';
export type SearchConfigType = {
query: DocumentNode;
template: (searchInput: string) => any;
resultMapper: (data: any) => any;
};