initialSearchState.ts 181 B

1234567891011
  1. export type StateType = {
  2. queryString: string;
  3. currentIndex: number;
  4. matchesMap: MatchType[];
  5. };
  6. export default {
  7. queryString: '',
  8. currentIndex: -1,
  9. matchesMap: [],
  10. };