mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			394 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			394 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /// <reference path="account.ts" />
 | |
| 
 | |
| namespace MastodonEntity {
 | |
|   export type Report = {
 | |
|     id: string
 | |
|     action_taken: boolean
 | |
|     action_taken_at: string | null
 | |
|     category: Category
 | |
|     comment: string
 | |
|     forwarded: boolean
 | |
|     status_ids: Array<string> | null
 | |
|     rule_ids: Array<string> | null
 | |
|     target_account: Account
 | |
|   }
 | |
| 
 | |
|   export type Category = 'spam' | 'violation' | 'other'
 | |
| }
 |