SearchArgs
type SearchArgs =
| SearchArgsCommon & {
mentionSelf?: boolean;
query: string;
}
| SearchArgsCommon & {
mentionSelf: true;
query?: string;
};
type SearchArgs =
| SearchArgsCommon & {
mentionSelf?: boolean;
query: string;
}
| SearchArgsCommon & {
mentionSelf: true;
query?: string;
};