session-desktop/ts/types/Search.ts

12 lines
187 B
TypeScript

export type SearchOptions = {
ourNumber: string;
noteToSelf: string;
};
export type AdvancedSearchOptions = {
query: string;
from?: string;
before: number;
after: number;
};