Skip to content

Commit

Permalink
fix(search): fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Jun 1, 2024
1 parent 849d6bd commit 68df294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/features/search-pad/SearchPadProvider.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Element } from '../../model/Types';

export type Token = {
matched: string;
normal: string;
matched?: string;
normal?: string;
};

export type SearchResult = {
Expand Down

0 comments on commit 68df294

Please sign in to comment.