16 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { apiRequestGet } from 'mastodon/api';
 | |
| import type {
 | |
|   ApiSearchType,
 | |
|   ApiSearchResultsJSON,
 | |
| } from 'mastodon/api_types/search';
 | |
| 
 | |
| export const apiGetSearch = (params: {
 | |
|   q: string;
 | |
|   resolve?: boolean;
 | |
|   type?: ApiSearchType;
 | |
|   limit?: number;
 | |
|   offset?: number;
 | |
| }) =>
 | |
|   apiRequestGet<ApiSearchResultsJSON>('v2/search', {
 | |
|     ...params,
 | |
|   });
 |