session-desktop/ts/types/Search.ts
2020-03-10 06:43:34 +01:00

13 lines
239 B
TypeScript

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