Skip to main content

SearchArgs

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