import { TaskItem } from "./TaskItem"; export interface TaskBulkUpdateSearchResult { nextPageString: string; previousPageString: string; useThresholdQuery: boolean; tasks: TaskItem[]; webTitles: { [webUrl: string]: string; }; }